Commas in Tag Cloud

时间:2012-08-19 作者:Joe Bobby

使用<?php wp_tag_cloud(\'\'); ?> 要在我的网站上显示标记,我如何用逗号分隔每个标记,同时从最后一个标记中删除逗号?

2 个回复
最合适的回答,由SO网友:fdsa 整理而成

根据Wordpress Codex on tag clouds, 您需要指定一个逗号作为“分隔符”参数。

$args = "separator"=>",";
wp_tag_cloud($args);

SO网友:Tara
 Filter the seperator arg for the tag cloud function. Put the following in your theme\'s functions.php

/**
 * Filter arguments of tag cloud widget to enlarge our text and
 * add commas
 */
function myfunc_filter_tag_cloud($args) {
    $args[\'smallest\'] = 18;
    $args[\'largest\'] = 32;
    $args[\'unit\'] = \'px\';
    $args[\'separator\']= \', \';
    return $args;
}
add_filter ( \'widget_tag_cloud_args\', \'myfunc_filter_tag_cloud\');
结束

相关推荐

POSTS_NAV_LINK()在index.php上不工作

我对posts_nav_link() 函数的索引。php。它可以工作,但不显示旧帖子。当有人点击“下一页”链接时,第一页上的相同帖子正在加载。这是我正在使用的代码:<?php if ( is_home ()) {$myquery = new wp_query(\'cat=-41\');}?> <?php global $wp_query; $temp_wp_query = $wp_query; $wp_query = null;&