如何显示分类术语中的帖子?

时间:2012-08-21 作者:Terrell Anderson

嘿,我想知道如何在循环中显示来自某个分类术语的帖子。

 <?php the_excerpt(); ?>
在我的帖子类型“Gallery”下,我有一个名为“series”的分类法,在“series”中,我有一个术语“漂亮的小骗子”。在我的post type “美丽的小骗子”档案显示了该CPT中发布的所有帖子。我想添加一个代码,允许在分类法“系列”下发布的带有“小骗子”一词的帖子也显示在该页面上。

为了实现这一点,我应该向上述摘录代码中添加什么?

1 个回复
SO网友:user1606423

Try this.

$type = \'buehne\';  // Name of the Custom Post Types
$tag =  \'TagName\';


$args =  array(
        \'post_type\' => $type, 
        \'paged\' => $paged,
        \'posts_per_page\' => -1, 
        \'orderby\' => \'menu_order\',
        \'order\' => \'ASC\', 
                \'tax_query\'=>array(
                    array(
            \'taxonomy\'=>\'th3\', //name of the Taxonom 
            \'field\'=>\'slug\',
            \'terms\'=>array($tag)
                            ))
                    );



$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post();
    if(is_object_in_term($post->ID,\'th3\',\'TagName\')) {  
        the_title(); ";

    }
endwhile;
结束

相关推荐

Wordpress Loop有像Shopify‘s Cycle一样的功能吗?

Shopify的循环可以让你在一个循环中的事物之间进行交替。以下是我的示例: <div class=\"{% cycle \'first\', \'second\', \'third\' %}\"> {% include \'product-grid-item\' %} </div> 我的问题是,Wordpress有这样的服务吗?我希望在打印循环中的每个项目时,能够循环使用某种设置,例如类名。