wp_tag_cloud( array|string $args = '' ): void|string|string[]
- Since
- 2.3.0, 2.8.0, 4.8.0
- Source
wp-includes/category-template.php:716
Description
Outputs a list of tags in what is called a 'tag cloud', where the size of each tag is determined by how many times that particular tag has been assigned to posts.
Compatibility
- WordPress
- since 4.8.0
- PHP
- 7.4–8.6-dev
- 6.7.7
- 6.8.8
- 6.9.7
- 7.0.4
- 7.1.0
Present in every tracked release (6.7.7 to 7.1.0), and compiles on PHP 7.4 through 8.6-dev.
Parameters
$argsarray|stringoptional- Array or string of arguments for displaying a tag cloud. See wp_generate_tag_cloud() and get_terms() for the full lists of arguments that can be passed in
$args.Default:''$numberintdefault: 45The number of tags to display. Accepts any positive integer or zero to return all.$linkstringdefault: 'view'Whether to display term editing links or term permalinks. Accepts 'edit' and 'view'.$post_typestringThe post type. Used to highlight the proper post type menu on the linked edit page. Defaults to the first post type associated with the taxonomy.$echobooldefault: trueWhether or not to echo the return value.
Return value
void|string|string[]- Void if 'echo' argument is true, or on failure. Otherwise, tag cloud as a string or an array, depending on 'format' argument.
Performance profile
How much work a call to wp_tag_cloud() does, and what it touches: the algorithmic scaling, the Zend instruction count per call across PHP versions, the hooks it hands control to, and the core code that calls it. Measured from the compiled opcodes, not a stopwatch, so every number is identical on any machine running the same PHP version, and every function in core is ranked by cost.
- Cost class
- Heavy
- Scaling
- Scales with input
- Instructions
- 18–44
- Plugin surface
- 1 hook
- Called by
- 2
Reaches the database via get_terms().
The body loops, so the work grows with what you pass in.
Executed per call on PHP 8.5, depending on the branch taken. The body compiles to 80.
Third-party callbacks on 'wp_tag_cloud' run inside this call, and their cost is not bounded by anything here.
2 places in core call this, so the cost is paid more often than your own code shows.
What it touches
- querycontent query
get_terms()called directly - hookthird-party callbacks
apply_filters()called directly
Further down the call graph this can also reach option, cache, serialize and transient. Those are the worst case, several calls deep and usually down an error path, not what a normal call pays.
What one call costs · 5 distinct outcomes
One number would be a lie: the work depends on which branch runs. These are every distinct cost wp_tag_cloud() can have, taken from its control-flow graph on PHP 8.5.
| When | Instructions | Calls it makes |
|---|---|---|
empty($tags) | 18 | wp_parse_args(), array_merge(), get_terms() |
!empty($tags) && is_wp_error() | 22 | wp_parse_args(), array_merge(), get_terms(), is_wp_error() |
!empty($tags) && !is_wp_error() | 38–42 | wp_parse_args(), array_merge(), get_terms(), is_wp_error(), wp_generate_tag_cloud(), apply_filters() |
!empty($tags) && !$tags | 40 | wp_parse_args(), array_merge(), get_terms(), is_wp_error(), get_term_link(), is_wp_error() |
!empty($tags) && !$tags | 44 | wp_parse_args(), array_merge(), get_terms(), is_wp_error(), get_edit_term_link(), is_wp_error() |
Across PHP versions
Compiles the same on PHP 7.4, 8.1, 8.2, 8.3, 8.4, 8.5 and 8.6-dev: 80 instructions, 18–44 executed per call, 8 branches. The work does not change between versions.
An instruction is not a fixed amount of time, so a matching count is not necessarily the same speed; what it rules out is a difference in the work itself.
Hooks and filters fired · 1
One hook fires while wp_tag_cloud() runs, in this order:
Uses · 7
- wp_parse_args()Merges user defined arguments into defaults array.
- get_terms()Retrieves the terms in a given taxonomy or list of taxonomies.
- is_wp_error()Checks whether the given variable is a WordPress Error.
- get_edit_term_link()Retrieves the URL for editing a given term.
- get_term_link()Generates a permalink for a taxonomy term archive.
- wp_generate_tag_cloud()Generates a tag cloud (heatmap) from provided data.
- apply_filters()Calls the callback functions that have been added to a filter hook.
Used by · 2
- WP_Widget_Tag_Cloud::widget()Outputs the content for the current Tag Cloud widget instance.
- render_block_core_tag_cloud()Renders the `core/tag-cloud` block on server.
Source code
function wp_tag_cloud( $args = '' ) { $defaults = array( 'smallest' => 8, 'largest' => 22, 'unit' => 'pt', 'number' => 45, 'format' => 'flat', 'separator' => "\n", 'orderby' => 'name', 'order' => 'ASC', 'exclude' => '', 'include' => '', 'link' => 'view', 'taxonomy' => 'post_tag', 'post_type' => '', 'echo' => true, 'show_count' => 0, ); $args = wp_parse_args( $args, $defaults ); $tags = get_terms( array_merge( $args, array( 'orderby' => 'count', 'order' => 'DESC', ) ) ); // Always query top tags. if ( empty( $tags ) || is_wp_error( $tags ) ) { return; } foreach ( $tags as $key => $tag ) { if ( 'edit' === $args['link'] ) { $link = get_edit_term_link( $tag, $tag->taxonomy, $args['post_type'] ); } else { $link = get_term_link( $tag, $tag->taxonomy ); } if ( is_wp_error( $link ) ) { return; } $tags[ $key ]->link = $link; $tags[ $key ]->id = $tag->term_id; } // Here's where those top tags get sorted according to $args. $return = wp_generate_tag_cloud( $tags, $args ); /** * Filters the tag cloud output. * * @since 2.3.0 * * @param string|string[] $return Tag cloud as a string or an array, depending on 'format' argument. * @param array $args An array of tag cloud arguments. See wp_tag_cloud() * for information on accepted arguments. */ $return = apply_filters( 'wp_tag_cloud', $return, $args ); if ( 'array' === $args['format'] || empty( $args['echo'] ) ) { return $return; } echo $return;}Changelog
Introduced in 2.3.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
show_count argument.from the docblocktaxonomy argument.from the docblockAbout this page
- Parsed data
- Generated from the wordpress-develop 7.1.0 tag, from
src/wp-includes/category-template.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it. - Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.