Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_generate_tag_cloud

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
1002            *
1003            * @see wp_generate_tag_cloud()
1004            *
1005            * @param array|string $return String containing the generated HTML tag cloud output
1006            *                             or an array of tag links if the 'format' argument
1007            *                             equals 'array'.
1008            * @param WP_Term[]    $tags   An array of terms used in the tag cloud.
1009            * @param array        $args   An array of wp_generate_tag_cloud() arguments.
1010            */
1011           return apply_filters( 'wp_generate_tag_cloud', $return, $tags, $args );
1012      } else {
1013           return $return;
1014      }
1015 }
1016
1017 /**
1018  * Serves as a callback for comparing objects based on name.
1019  *
1020  * Used with `uasort()`.