- Timestamp:
- 10/02/2017 10:01:19 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/widgets/class-wp-widget-tag-cloud.php
r41162 r41685 59 59 * @since 2.8.0 60 60 * @since 3.0.0 Added taxonomy drop-down. 61 * @since 4.9.0 Added the `$instance` parameter. 61 62 * 62 63 * @see wp_tag_cloud() 63 64 * 64 * @param array $args Args used for the tag cloud widget. 65 * @param array $args Args used for the tag cloud widget. 66 * @param array $instance Array of settings for the current widget. 65 67 */ 66 68 $tag_cloud = wp_tag_cloud( apply_filters( 'widget_tag_cloud_args', array( … … 68 70 'echo' => false, 69 71 'show_count' => $show_count, 70 ) ) );72 ), $instance ) ); 71 73 72 74 if ( empty( $tag_cloud ) ) {
Note: See TracChangeset
for help on using the changeset viewer.