Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: list_cats

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

This hook occurs 2 times in this file.

Line Code
239           $tab_index_attribute = " tabindex=\"$tab_index\"";
240
241      $categories = get_categories($r);
242
243      $output = '';
244      if ( ! empty($categories) ) {
245           $output = "<select name='$name' id='$name' class='$class' $tab_index_attribute>\n";
246
247           if ( $show_option_all ) {
248                $show_option_all = apply_filters('list_cats', $show_option_all);
249                $output .= "\t<option value='0'>$show_option_all</option>\n";
250           }
251
252           if ( $show_option_none) {
253                $show_option_none = apply_filters('list_cats', $show_option_none);
254                $output .= "\t<option value='-1'>$show_option_none</option>\n";
255           }
256
257           if ( $hierarchical )
258                $depth = $r['depth'];  // Walk the full depth.
259           else
260                $depth = -1; // Flat.
261
262           $output .= walk_category_dropdown_tree($categories, $depth, $r);