gpt4 book ai didi

wordpress 显示所有自定义分类法及其相关帖子

转载 作者:行者123 更新时间:2023-12-03 09:30:20 26 4
gpt4 key购买 nike

他们在 wordpress 自定义分类法中是否有任何方式来显示所有类别并关联他们的帖子,这意味着:

my category1
post 1
post 2
post 3
post 4


my category2
post 1
post 2
post 3
post 4

请注意,我必须在自定义帖子类型分类法中执行此操作。

最佳答案

这应该有效,我还没有彻底测试过

$args = array (
'type' => 'post', //your custom post type
'orderby' => 'name',
'order' => 'ASC',
'hide_empty' => 0 //shows empty categories
);
$categories = get_categories( $args );
foreach ($categories as $category) {
echo $category->name;
$post_by_cat = get_posts(array('cat' => $category->term_id));

echo '<ul>';
foreach( $post_by_cat as $post ) {
setup_postdata($post);
echo '<li><a href="'.the_permalink().'">'.the_title().'</a></li>';
}
echo '</ul>';
}

来源:
http://codex.wordpress.org/Function_Reference/get_categories
http://codex.wordpress.org/Template_Tags/get_posts

问题只是问

关于wordpress 显示所有自定义分类法及其相关帖子,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6679903/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com