link_category, $cat->name

link_category, $cat->name

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: 7.0.3

apply_filters('link_category, $cat->name') is found 2 times:

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