排除 WordPress 中的某一类别

发布于 2024-08-24 10:43:30 字数 207 浏览 4 评论 0原文

我刚刚开始使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦途 2024-08-31 10:43:30

只需添加一个减号即可。例子:

query_posts('cat=-3');

Just add a minus to it. Example:

query_posts('cat=-3');
墨小沫ゞ 2024-08-31 10:43:30

您应该只包含您想要在每个页面上显示的循环/类别。这意味着您应该有一个索引页面,并且您的辅助页面应该是模板文件中的单独文件。然后相应地编辑您的类别。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文