WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
| Line | Code |
|---|---|
| 267 | $parsed_args['category_before'] |
| 268 | ); |
| 269 | /** |
| 270 | * Filters the category name. |
| 271 | * |
| 272 | * @since 2.2.0 |
| 273 | * |
| 274 | * @param string $cat_name The category name. |
| 275 | */ |
| 276 | $catname = apply_filters( 'link_category', $cat->name ); |
| 277 | |
| 278 | $output .= $parsed_args['title_before']; |
| 279 | $output .= $catname; |
| 280 | $output .= $parsed_args['title_after']; |
| 281 | $output .= "\n\t<ul class='xoxo blogroll'>\n"; |
| 282 | $output .= _walk_bookmarks( $bookmarks, $parsed_args ); |
| 283 | $output .= "\n\t</ul>\n"; |
| 284 | $output .= $parsed_args['category_after'] . "\n"; |
| 285 | } |