Make WordPress Core


Ignore:
Timestamp:
10/27/2019 07:33:12 PM (4 years ago)
Author:
johnbillion
Message:

Docs: Correct invalid hook docblock placement.

See #48303

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/widgets/class-wp-widget-tag-cloud.php

    r43571 r46604  
    5555        $show_count = ! empty( $instance['count'] );
    5656
    57         /**
    58          * Filters the taxonomy used in the Tag Cloud widget.
    59          *
    60          * @since 2.8.0
    61          * @since 3.0.0 Added taxonomy drop-down.
    62          * @since 4.9.0 Added the `$instance` parameter.
    63          *
    64          * @see wp_tag_cloud()
    65          *
    66          * @param array $args     Args used for the tag cloud widget.
    67          * @param array $instance Array of settings for the current widget.
    68          */
    6957        $tag_cloud = wp_tag_cloud(
     58            /**
     59             * Filters the taxonomy used in the Tag Cloud widget.
     60             *
     61             * @since 2.8.0
     62             * @since 3.0.0 Added taxonomy drop-down.
     63             * @since 4.9.0 Added the `$instance` parameter.
     64             *
     65             * @see wp_tag_cloud()
     66             *
     67             * @param array $args     Args used for the tag cloud widget.
     68             * @param array $instance Array of settings for the current widget.
     69             */
    7070            apply_filters(
    7171                'widget_tag_cloud_args',
Note: See TracChangeset for help on using the changeset viewer.