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