限制在Wordpress中显示特定标签

时间:2013-08-17 03:54:45

标签: wordpress function tags limit

如何限制Wordpress中某个标记的结果?例如,我想在我的页面中只显示标签“热门”的5个条目。有没有我可以放在functions.php中的脚本?

1 个答案:

答案 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;
 ?>