下面是一个循环示例
您可以根据需要的数量更改要排除的标记数。。。
<?php
if (have_posts()) : while (have_posts()) : the_post();
// GET THE TAGS OF CURRENT POST IN LOOP AND COUNT THE AMOUNT
$posttags = get_the_tags();
$howmany = count($posttags);
if($howmany > 2) {
?>
<h3><?php the_title(); ?></h3>
<?php the_excerpt(); ?>
<?php
} else {
// do nothing
}
endwhile;
?>
<?php endif; ?>
。
希望这对Sagive有所帮助