0

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

4

1 回答 1

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;
 ?>
于 2013-08-17T04:56:50.467 回答