Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: widget_categories_args

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

Line Code
101           $cat_args['title_li'] = '';
102
103           /**
104            * Filter the arguments for the Categories widget.
105            *
106            * @since 2.8.0
107            *
108            * @param array $cat_args An array of Categories widget options.
109            */
110           wp_list_categories( apply_filters( 'widget_categories_args', $cat_args ) );
111 ?>
112           </ul>
113 <?php
114           }
115
116           echo $args['after_widget'];
117      }
118
119      /**