Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: widget_tag_cloud_args

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
1251            * Filter the taxonomy used in the Tag Cloud widget.
1252            *
1253            * @since 2.8.0
1254            * @since 3.0.0 Added taxonomy drop-down.
1255            *
1256            * @see wp_tag_cloud()
1257            *
1258            * @param array $current_taxonomy The taxonomy to use in the tag cloud. Default 'tags'.
1259            */
1260           wp_tag_cloud( apply_filters( 'widget_tag_cloud_args', array(
1261                'taxonomy' => $current_taxonomy
1262           ) ) );
1263
1264           echo "</div>\n";
1265           echo $args['after_widget'];
1266      }
1267
1268      public function update( $new_instance, $old_instance ) {
1269           $instance['title'] = strip_tags(stripslashes($new_instance['title']));