如何限制Wordpress中某个标记的结果?例如,我想在我的页面中只显示标签“热门”的5个条目。有没有我可以放在functions.php中的脚本?
答案 0 :(得分:0)
尝试像这样使用
<?php
$posttags = get_the_tags();
$count=0;
if ($posttags) {
$output = '';
foreach($posttags as $tag) {
$count++;
$output .= $tag->name . ' ';
if( $count >4 ) break; //you can limit count here
}
}
echo $output;
?>