link_category

link_category

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

See hook in core

Displaying hooks found in version: wordpress-6.5.2

apply_filters('link_category') is found 3 times:

  • /wp-includes/bookmark-template.php line 288
    			 * @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
    		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
    }
    
    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 ) :