link_category

link_category

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('link_category') is found 3 times:

  • /wp-includes/bookmark-template.php line 288
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    * @since 2.2.0
     *
     * @param string $cat_name The category name.
     */
    $catname = apply_filters( 'link_category', $cat->name );
     
    $output .= $parsed_args['title_before'];
    $output .= $catname;
    $output .= $parsed_args['title_after'];
    $output .= "\n\t<ul class='xoxo blogroll'>\n";
    $output .= _walk_bookmarks( $bookmarks, $parsed_args );
  • /wp-includes/deprecated.php line 1063
    1059
    1060
    1061
    1062
    1063
    1064
    1065
    1066
    1067
    1068
    1069
    foreach ( (array) $cats as $cat ) {
        // Handle each category.
     
        // Display the category name.
        echo '  <li id="linkcat-' . $cat->term_id . '" class="linkcat"><h2>' . apply_filters('link_category', $cat->name ) . "</h2>\n\t<ul>\n";
        // Call get_links() with all the appropriate params.
        get_links($cat->term_id, '<li>', "</li>", "\n", true, 'name', false);
     
        // Close the last category.
        echo "\n\t</ul>\n</li>\n";
    }
  • /wp-links-opml.php line 67
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    }
     
    foreach ( (array) $cats as $cat ) :
        /** This filter is documented in wp-includes/bookmark-template.php */
        $catname = apply_filters( 'link_category', $cat->name );
     
        ?>
    <outline type="category" title="<?php echo esc_attr( $catname ); ?>">
        <?php
        $bookmarks = get_bookmarks( array( 'category' => $cat->term_id ) );
        foreach ( (array) $bookmarks as $bookmark ) :