widget_tag_cloud_args

widget_tag_cloud_args

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-5.0.3

apply_filters('widget_tag_cloud_args') is found 1 times:

  • /wp-includes/widgets/class-wp-widget-tag-cloud.php line 69
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    *
     * @param array $args     Args used for the tag cloud widget.
     * @param array $instance Array of settings for the current widget.
     */
    $tag_cloud = wp_tag_cloud( apply_filters( 'widget_tag_cloud_args', array(
        'taxonomy'   => $current_taxonomy,
        'echo'       => false,
        'show_count' => $show_count,
    ), $instance ) );
     
    if ( empty( $tag_cloud ) ) {