排除 WordPress 中的某一类别
我刚刚开始使用 WordPress 作为 CMS。在网站上,我有 2 个页面,我想要显示不同的帖子。到目前为止,我理解这段小代码只在一页上发布一个特定类别(当放在循环前面时:
<?php query_posts('cat=8&showposts=5');?>
但是当我需要在我的博客页面上排除此类别时我该怎么写?
I just started out using wordpress as a CMS. On the site I have 2 pages I want different posts to show on. So far I understand this small code to post only one particular category one a page (when put infront of the loop:
<?php query_posts('cat=8&showposts=5');?>
But what do I write when I need to exclude this category on my blog-page?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需添加一个减号即可。例子:
Just add a minus to it. Example:
您应该只包含您想要在每个页面上显示的循环/类别。这意味着您应该有一个索引页面,并且您的辅助页面应该是模板文件中的单独文件。然后相应地编辑您的类别。
index.php - query_posts('cat=BLOG&showposts=5');
other.php - query_posts('cat=OTHER&showposts=5');
然后在管理面板中相应地创建您的页面。
You should only include the loop/category you want displayed on each page. Meaning you should have an index page and your secondary page should be a separate file within your template file. Then edit your categories accordingly.
index.php - query_posts('cat=BLOG&showposts=5');
other.php - query_posts('cat=OTHER&showposts=5');
Then create your page within the administration panel accordingly.