Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何限制 Wordpress 中某个标签的结果?例如,我只想在我的页面中显示标签“流行”的 5 个条目。有没有可以放入functions.php的脚本?
尝试像这样使用
<?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; ?>