Changes between Initial Version and Version 1 of Ticket #59363
- Timestamp:
- 09/15/2023 10:19:33 AM (13 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #59363
-
Property
Component
changed from
General
toEditor
-
Property
Component
changed from
-
Ticket #59363 – Description
initial v1 1 1 Line https://github.com/WordPress/wordpress-develop/blob/trunk/src/wp-includes/blocks/tag-cloud.php#L28 2 2 {{{ 3 3 $tag_cloud = wp_tag_cloud( $args ); 4 4 }}} 5 5 has to be changed to 6 6 {{{ 7 7 $tag_cloud = wp_tag_cloud( 8 8 apply_filters( … … 11 11 ) 12 12 ); 13 13 }}} 14 14 to be in line with documentation: 15 15 https://developer.wordpress.org/reference/hooks/widget_tag_cloud_args/