Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #59363


Ignore:
Timestamp:
09/15/2023 10:19:33 AM (13 months ago)
Author:
SergeyBiryukov
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #59363

    • Property Component changed from General to Editor
  • Ticket #59363 – Description

    initial v1  
    11Line https://github.com/WordPress/wordpress-develop/blob/trunk/src/wp-includes/blocks/tag-cloud.php#L28
    2 
     2{{{
    33$tag_cloud = wp_tag_cloud( $args );
    4 
     4}}}
    55has to be changed to
    6 
     6{{{
    77  $tag_cloud = wp_tag_cloud(
    88    apply_filters(
     
    1111    )
    1212  );
    13 
     13}}}
    1414to be in line with documentation:
    1515https://developer.wordpress.org/reference/hooks/widget_tag_cloud_args/