diff --git a/src/wp-includes/blocks/tag-cloud.php b/src/wp-includes/blocks/tag-cloud.php
index 7ff5f78400..70324c1efd 100644
a
|
b
|
function render_block_core_tag_cloud( $attributes ) { |
25 | 25 | 'smallest' => floatVal( $attributes['smallestFontSize'] ), |
26 | 26 | 'largest' => floatVal( $attributes['largestFontSize'] ), |
27 | 27 | ); |
28 | | $tag_cloud = wp_tag_cloud( $args ); |
| 28 | $tag_cloud = wp_tag_cloud( |
| 29 | apply_filters( |
| 30 | 'widget_tag_cloud_args', |
| 31 | $args |
| 32 | ) |
| 33 | ); |
29 | 34 | |
30 | 35 | if ( ! $tag_cloud ) { |
31 | 36 | $tag_cloud = __( 'There’s no content to show here yet.' ); |