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 |
---|---|
91 | * |
92 | * @param string $output Used to append additional content (passed by reference). |
93 | * @param WP_Term $category Category data object. |
94 | * @param int $depth Optional. Depth of category in reference to parents. Default 0. |
95 | * @param array $args Optional. An array of arguments. See wp_list_categories(). Default empty array. |
96 | * @param int $id Optional. ID of the current category. Default 0. |
97 | */ |
98 | public function start_el( &$output, $category, $depth = 0, $args = array(), $id = 0 ) { |
99 | /** This filter is documented in wp-includes/category-template.php */ |
100 | $cat_name = apply_filters( 'list_cats', esc_attr( $category->name ), $category ); |
101 |
|
102 | // Don't generate an element if the category name is empty. |
103 | if ( '' === $cat_name ) { |
104 | return; |
105 | } |
106 |
|
107 | $atts = array(); |
108 | $atts['href'] = get_term_link( $category ); |
109 |
|