add_filter( ‘widget_tag_cloud_args’, ‘tag_cloud’ ); function tag_cloud() { $ args = array( ‘smallest’ => 10, ‘largest’ => 10, ‘unit’ => ‘pt’, ‘format’ => ‘list’, ‘order’ => ‘ASC’, ); return $ args; } This code removes the widget title. How do i display the widget title and filter the tag cloud args?Read more