限制 WordPress 模板仅显示一个类别
我尝试了在网络上找到的所有内容,但出现错误,或者这不是我要搜索的内容...
我必须在 WordPress 中创建一个页面,以仅显示具有特定 ID 的类别的帖子(在我的例子中) id=8 ) 我尝试编辑loop-xxxx.php ..模板文件...一切,但我总是遇到问题 导航系统不工作。我的意思是...回到旧的帖子是行不通的,因为输出显示的是最后的帖子而不是旧的帖子。
我在循环或模板文件中使用的代码是:
<?php
query_posts('cat=8');
while (have_posts()) : the_post();
the_content();
endwhile;
?>
我尝试将其插入到
<?php while ( have_posts() ) : the_post(); ?>
in loop.php
之前或在 index.php 内调用循环之前
请帮助我:\
I tried everything found in the web, but i'm getting errors or that's not what I am searching for...
I have to make a PAGE in wordpress, to show ONLY the posts of the category with a certain ID ( in my case id=8 )
i tryed to edit the loop-xxxx.php .. the template file... everything but I get always a problem
navigation system doesn't work. I mean... getting back to older posts won't work cause the output shows the last posts instead of older one.
The code I'm using in the loop or in the template file is:
<?php
query_posts('cat=8');
while (have_posts()) : the_post();
the_content();
endwhile;
?>
i tried inserting it before the
<?php while ( have_posts() ) : the_post(); ?>
in loop.php
or before the call of loop inside the index.php
please help me :\
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一种解决方案是使用自定义 WP_Query。在自定义页面的 TEMPLATE 文件中,其中
ID
是目标类别的 ID:One solution is to use a custom WP_Query. In the custom page's TEMPLATE file, where
ID
is the id of the targeted category:检查一下。
祝你好运。
Check this.
Good luck.