Changes

Jump to navigation Jump to search
416 bytes added ,  01:14, 30 June 2017
no edit summary
Line 68: Line 68:  
</pre>
 
</pre>
 
The Placeholder Message Text can be set at area "search = Howto"
 
The Placeholder Message Text can be set at area "search = Howto"
 +
 +
== Customize Wordpress Tag Cloud Widget ==
 +
edit functions.php at yor Theme Path and insert at the end:
 +
<pre>
 +
function custom_tag_cloud_widget($args) {
 +
$args['number'] = 0; //adding a 0 will display all tags
 +
$args['largest'] = 18; //largest tag
 +
$args['smallest'] = 10; //smallest tag
 +
$args['unit'] = 'px'; //tag font unit
 +
return $args;
 +
}
 +
add_filter( 'widget_tag_cloud_args', 'custom_tag_cloud_widget' );
 +
</pre>

Navigation menu