Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: tag_cloud_sort

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