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
825
826      /**
827       * Filter how the items in a tag cloud are sorted.
828       *
829       * @since 2.8.0
830       *
831       * @param array $tags Ordered array of terms.
832       * @param array $args An array of tag cloud arguments.
833       */
834      $tags_sorted = apply_filters( 'tag_cloud_sort', $tags, $args );
835      if ( empty( $tags_sorted ) ) {
836           return $return;
837      }
838
839      if ( $tags_sorted !== $tags ) {
840           $tags = $tags_sorted;
841           unset( $tags_sorted );
842      } else {
843           if ( 'RAND' === $args['order'] ) {