link_category
Filters the bookmarks category name.
Description
Parameters (1)
- 0. $cat_name (string)
- The OPML outline category name.
Usage
- To run the hook, copy the example below.
- $cat_name = apply_filters( 'link_category', $cat_name );
- if ( !empty( $cat_name ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the link_category callback
- function filter_link_category( $cat_name ) {
- // make filter magic happen here...
- return $cat_name;
- };
- // add the filter
- add_filter( 'link_category', 'filter_link_category', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'link_category', 'filter_link_category', 10, 1 );
Defined (3)
The filter is defined in the following location(s).
- /wp-links-opml.php
- $catname = apply_filters( 'link_category', $cat->name );
- /wp-includes/deprecated.php
- echo ' <li id="linkcat-' . $cat->term_id . '" class="linkcat"><h2>' . apply_filters('link_category', $cat->name ) . "</h2>\n\t<ul>\n";
- /wp-includes/bookmark-template.php
- $catname = apply_filters( 'link_category', $cat->name );