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 |
---|---|
617 | $args['topic_count_text_callback'] = create_function('$count', $body); |
618 | } |
619 |
|
620 | $args = wp_parse_args( $args, $defaults ); |
621 | extract( $args ); |
622 |
|
623 | if ( empty( $tags ) ) |
624 | return; |
625 |
|
626 | $tags_sorted = apply_filters( 'tag_cloud_sort', $tags, $args ); |
627 | if ( $tags_sorted != $tags ) { // the tags have been sorted by a plugin |
628 | $tags = $tags_sorted; |
629 | unset($tags_sorted); |
630 | } else { |
631 | if ( 'RAND' == $order ) { |
632 | shuffle($tags); |
633 | } else { |
634 | // SQL cannot save you; this is a second (potentially different) sort on a subset of data. |
635 | if ( 'name' == $orderby ) |