wp_generate_tag_cloud

wp_generate_tag_cloud

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('wp_generate_tag_cloud') is found 1 times:

  • /wp-includes/category-template.php line 1054
    1050
    1051
    1052
    1053
    1054
    1055
    1056
    1057
    1058
    1059
    1060
             *                                equals 'array'.
             * @param WP_Term[]       $tags   An array of terms used in the tag cloud.
             * @param array           $args   An array of wp_generate_tag_cloud() arguments.
             */
            return apply_filters( 'wp_generate_tag_cloud', $return, $tags, $args );
        } else {
            return $return;
        }
    }
     
    /**