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 |
---|---|
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"; |