Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: list_cats_exclusions

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
285      if ( !empty($exclude) ) {
286           $excats = preg_split('/[\s,]+/',$exclude);
287           if ( count($excats) ) {
288                foreach ( $excats as $excat ) {
289                     $exclusions .= ' AND cat_ID <> ' . intval($excat) . ' ';
290                }
291           }
292      }
293
294      $exclusions = apply_filters('list_cats_exclusions', $exclusions );
295
296      if ( intval($categories) == 0 ) {
297           $sort_column = 'cat_'.$sort_column;
298
299           $query = "
300                SELECT cat_ID, cat_name, category_nicename, category_description, category_parent, category_count
301                FROM $wpdb->categories
302                WHERE cat_ID > 0 $exclusions
303                ORDER BY $sort_column $sort_order";