从 WordPress 中的自定义分类中获取所有帖子
有没有办法从 Wordpress 中的分类中获取所有帖子?
在 taxonomy.php
中,我有这段代码,用于获取与当前术语相关的术语中的帖子。
$current_query = $wp_query->query_vars;
query_posts( array( $current_query['taxonomy'] => $current_query['term'], 'showposts' => 10 ) );
我想创建一个包含分类中所有帖子的页面,无论术语如何。
有没有一种简单的方法可以做到这一点,或者我是否必须查询术语的分类法,然后循环它们,等等。
Is there a way to get all the posts from a taxonomy in Wordpress ?
In taxonomy.php
, I have this code that gets the posts from the term related to the current term.
$current_query = $wp_query->query_vars;
query_posts( array( $current_query['taxonomy'] => $current_query['term'], 'showposts' => 10 ) );
I'd like to create a page with all the posts in the taxonomy, regardless of the term.
Is there a simple way to do this, or do I have to query the taxonomy for the terms, then loop trough them, etc.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
@PaBLoX 提出了一个非常好的解决方案,但我自己提出了一个解决方案,这有点棘手,并且不需要每次为每个术语查询所有帖子。如果单个帖子中分配了多个术语怎么办?它不会多次渲染同一篇文章吗?
wp_list_pluck
@PaBLoX made a very nice solution but I made a solution myself what is little tricky and doesn't need to query for all the posts every time for each of the terms. and what if there are more than one term assigned in a single post? Won't it render same post multiple times?
wp_list_pluck
这样您就可以发布第一个项目,然后您可以创建一个
foreach
;循环:这样你就可以列出它们,如果你想发布所有它们,-我的解决方案-在foreach循环中创建一个正常的wordpress循环,但它必须有类似的东西:
我发布了一些非常相似的内容此处。
With that you'd post the first item, yo can then create a
foreach
; loop:That way you'd list them, if you want to post all of them, -my solution- create a normal wordpress loop inside the foreach one, but it has to have something like:
I posted something very similar here.
与帖子类型不同,WordPress 没有用于分类法块本身的路径。
要使分类法本身列出分配有任何分类法术语的所有帖子,您需要使用
WP_Query
中tax_query
的EXISTS
运算符:Unlike for post types, WordPress does not have a route for the taxonomy slug itself.
To make the taxonomy slug itself list all posts that have any term of the taxonomy assigned, you need to use the
EXISTS
operator oftax_query
inWP_Query
:在术语的查询循环中,您可以收集数组中的所有帖子引用,并稍后在新的 WP_Query 中使用它。
While in the query loop for terms, you can collect all post references in an array and use that later in a new WP_Query.