php – 从WordPress中的自定义分类获取所有帖子

前端之家收集整理的这篇文章主要介绍了php – 从WordPress中的自定义分类获取所有帖子前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法从wordpress中的分类学中获取所有帖子?

在taxonomy.PHP中,我有这个代码从与当前术语相关的术语中获取帖子.

$current_query = $wp_query->query_vars;
query_posts( array( $current_query['taxonomy'] => $current_query['term'],'showposts' => 10 ) );

我想创建一个包含分类法中所有帖子的页面,不管该术语如何.

有没有一个简单的方法来做这个,或者我必须查询分类法的术语,然后循环等等.

$myterms = get_terms('taxonomy-name','orderby=none&hide_empty');    
echo  $myterms[0]->name;

有了你会发布第一个项目,然后可以创建一个foreach;循环:

foreach ($myterms as $term) { ?>
    <li><a href="<?PHP echo $term->slug; ?>"><?PHP echo $term->name; ?></a></li> <?PHP
} ?>

这样你可以列出它们,如果你想发布所有这些,我的解决方案 – 在foreach中创建一个正常的wordpress循环,但它必须有一些类似的东西:

foreach ($myterms as $term) :

$args = array(
    'tax_query' => array(
        array(
            $term->slug
        )
    )
);

//  assigning variables to the loop
global $wp_query;
$wp_query = new WP_Query($args);

// starting loop
while ($wp_query->have_posts()) : $wp_query->the_post();

the_title();
blabla....

endwhile;

endforeach;

我贴了非常类似的here.

原文链接:https://www.f2er.com/php/131344.html

猜你在找的PHP相关文章