View Single Post
  #1   IP: 218.85.132.244
Old 2008-02-10, 10:44 PM
car car is offline
高级会员
 
Join Date: 2006-05-14
Posts: 534
car 正向着好的方向发展
Default wp tag cloud 用法

<?php if ( function_exists('wp_tag_cloud') ) : ?>
<li>
<h2>Popular Tags</h2>
<ul>
<?php wp_tag_cloud('smallest=8&largest=22'); ?>
</ul>
</li>
<?php endif; ?>

字体不一样大,如要一样大,则:

<?php if ( function_exists('wp_tag_cloud') ) : ?>
<li>
<h2>Popular Tags</h2>
<ul>
<?php wp_tag_cloud('smallest=8&largest=8'); ?>
</ul>
</li>
<?php endif; ?>


更多http://codex.wordpress.org/Template_Tags/wp_tag_cloud
http://codex.wordpress.org/Template_Tags
Reply With Quote