0
如何限制Wordpress中某個標籤的結果?例如,我只想在我的頁面中顯示5個「熱門」標籤條目。有沒有我可以放在functions.php中的腳本?在Wordpress中限制顯示特定標籤
如何限制Wordpress中某個標籤的結果?例如,我只想在我的頁面中顯示5個「熱門」標籤條目。有沒有我可以放在functions.php中的腳本?在Wordpress中限制顯示特定標籤
嘗試使用這樣
<?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;
?>