如何在WordPress的主页排除指定类别文章

/ 0评 / 0

首先打开主题的index.php文件,找到

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

将上面那行修改为:

<?php if (have_posts()) : query_posts($query_string .'&cat=-4'); ?>
<?php while (have_posts()) : the_post(); ?>

其中的&cat=-4里的4是分类id,怎么获取不会的就baidu下吧,'-'号是排除的意思。

发表评论

邮箱地址不会被公开。 必填项已用*标注