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.
This hook occurs 2 times in this file.
| Line | Code |
|---|---|
| 1320 | * @param string $output Passed by reference. Used to append additional content. |
| 1321 | * @param object $category Category data object. |
| 1322 | * @param int $depth Depth of category in reference to parents. |
| 1323 | * @param array $args |
| 1324 | */ |
| 1325 | function start_el(&$output, $category, $depth, $args) { |
| 1326 | extract($args); |
| 1327 | |
| 1328 | $cat_name = esc_attr( $category->name); |
| 1329 | $cat_name = apply_filters( 'list_cats', $cat_name, $category ); |
| 1330 | $link = '<a href="' . get_category_link( $category->term_id ) . '" '; |
| 1331 | if ( $use_desc_for_title == 0 || empty($category->description) ) |
| 1332 | $link .= 'title="' . sprintf(__( 'View all posts filed under %s' ), $cat_name) . '"'; |
| 1333 | else |
| 1334 | $link .= 'title="' . esc_attr( strip_tags( apply_filters( 'category_description', $category->description, $category ) ) ) . '"'; |
| 1335 | $link .= '>'; |
| 1336 | $link .= $cat_name . '</a>'; |
| 1337 | |
| 1338 | if ( (! empty($feed_image)) || (! empty($feed)) ) { |
| Line | Code |
| 1434 | * |
| 1435 | * @param string $output Passed by reference. Used to append additional content. |
| 1436 | * @param object $category Category data object. |
| 1437 | * @param int $depth Depth of category. Used for padding. |
| 1438 | * @param array $args Uses 'selected', 'show_count', and 'show_last_update' keys, if they exist. |
| 1439 | */ |
| 1440 | function start_el(&$output, $category, $depth, $args) { |
| 1441 | $pad = str_repeat(' ', $depth * 3); |
| 1442 | |
| 1443 | $cat_name = apply_filters('list_cats', $category->name, $category); |
| 1444 | $output .= "\t<option class=\"level-$depth\" value=\"".$category->term_id."\""; |
| 1445 | if ( $category->term_id == $args['selected'] ) |
| 1446 | $output .= ' selected="selected"'; |
| 1447 | $output .= '>'; |
| 1448 | $output .= $pad.$cat_name; |
| 1449 | if ( $args['show_count'] ) |
| 1450 | $output .= ' ('. $category->count .')'; |
| 1451 | if ( $args['show_last_update'] ) { |
| 1452 | $format = 'Y-m-d'; |