Make WordPress Core


Ignore:
Timestamp:
07/05/2019 01:44:41 AM (5 years ago)
Author:
pento
Message:

Coding Standards: Mark the handful of hook names with uppercase characters or hyphens as ignored.

See #47632.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/category-template.php

    r45590 r45599  
    12991299     * @param string[] $links An array of term links.
    13001300     */
    1301     $term_links = apply_filters( "term_links-{$taxonomy}", $links );
     1301    $term_links = apply_filters( "term_links-{$taxonomy}", $links );  // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
    13021302
    13031303    return $before . join( $sep, $term_links ) . $after;
Note: See TracChangeset for help on using the changeset viewer.