谢谢你的帮助!。
我正在尝试显示所有标记,但以标记(“作者:”)开头的标记除外。
我已经知道了如何排除单个标记(只需将其键入exclude参数)。
我已经知道了如何排除标记数组(创建了一个数组并手动添加了几个值)。
但我还没有弄清楚如何基于get\\u term\\u by填充数组(或者这是否是最好的方法)。
<div id="tagarea">
<div class="contained">
<h2>Categories</h2><br>
<?php
//$excludetags = array(136,135);
$excludetags = get_term_by(\'name\', \'Author:*\',\'post_tag\');
$args = array(
\'separator\' => " ... ",
\'orderby\' => \'name\',
\'order\' => \'ASC\',
\'exclude\' => $excludetags,
\'include\' => null,
\'topic_count_text_callback\' => default_topic_count_text,
\'link\' => \'view\',
\'taxonomy\' => \'post_tag\',
\'echo\' => true,
\'child_of\' => null, // see Note!
);
?>
<?php wp_tag_cloud( $args ); ?>
</div>
我也试过了
$excludetags = array(get_term_by(\'name\', \'Author:*\',\'post_tag\'));
但这也行不通。