WordPressでタグクラウドのフォントサイズを変更

wordpressのタグクラウドを、
wp_tag_cloud();
で表示させてる場合はパラメータを渡せばフォントサイズを変更できるのですが
ウィジェットで表示させてる場合はphpファイルを弄る必要がありそうです。

wp-includes/category-template.php
を変更します。

//521行目あたり
function wp_tag_cloud( $args = '' ) {
	$defaults = array(
		'smallest' => 8, 'largest' => 22, 'unit' => 'pt', 'number' => 45,
		'format' => 'flat', 'orderby' => 'name', 'order' => 'ASC',
		'exclude' => '', 'include' => '', 'link' => 'view', 'taxonomy' => 'post_tag', 'echo' => true
	);

この部分の

smallest = 最小サイズ
largist = 最大サイズ

となるので、この部分を適当な値に変更すればOKです。

B!

Comment

コメント(0)

コメントする

Trackback(1)

タグクラウドのフォントサイズを変更 - wordpressのまとめ

2011年6月16日@ 2:13 PM
[...] | タグクラウド 参考https://design-spice.com/2009/12/18/wordpress-tag-cloud-font-size/ wp-includes/category-template.phpを変更します。 1 2 3 4 5 6 7 //521行目あたり function [...]