wordpress模板制作中,如果不想让某个分类的标签出现在tag.php页面中,可以通过以下的方法实现:

1、在tag.php文件中找到

<?php if (have_posts()) : while (have_posts()) : the_post(); ?>

2、将这段代码改写成

<?php if (have_posts()) : query_posts($query_string .'&cat=-1,-2,-3,-666,-888');?>
<?php while (have_posts()) : the_post(); ?>

代码说明:上面的数字即为要排除的指定分类目录的ID

按上面的方法简单修改一下代码,就可以实现wordpress网站的对tag的灵活调用,是不是很简单呢,你学废了吗