使用POST插件按类别进行WordPress查询

时间:2020-03-11 作者:A Rimbaud

我正在尝试按类别slug(和父帖子类别slug)查询一些帖子

我可以用

<?php echo $post->post_name; ?>

<?php $post_data = get_post($post->post_parent);
$parent_slug = $post_data->post_name;
echo $parent_slug; ?>
我想在下面的查询中插入:

<?php $query = new WP_Query(array(
\'post_type\' => \'offers\',
\'category_name\' => \'PAGE-SLUG-event\'
)); ?>
所以,实际上,我正在尝试这样做,这显然不起作用。

 <?php $query = new WP_Query(array(
 \'post_type\' => \'offers\',
 \'category_name\' => \'<?php echo $post->post_name; ?>-event\'
 )); ?>

1 个回复
SO网友:Luis Bernal

函数名称functions(){$args=array(\'post\\u type\'=>\'CPT\',\'posts\\u per\\u page\'=>-1,);$recetax=new wp\\u query($args);while($recetax->have\\u posts()):$recetax->the\\u post();?>

/* your content of ctp*/

<?php endwhile; wp_reset_query();  
}

相关推荐

使用新的WP-Query()从循环中过滤后期格式;

嗨,我目前正在为我的博客构建一个主题。下面的代码指向最新的帖子(特色帖子)。因为这将有一个不同的风格比所有其他职位。然而我想过滤掉帖子格式:链接使用我在循环中定义的WP查询,因为它给我带来了更多的灵活性。我该怎么做呢? <?php $featured = new WP_Query(); $featured->query(\'showposts=1\'); ?> <?php while ($featured->have_post