我在wordpress安装中定义了多个自定义帖子类型。我想从所有自定义帖子类型中获取最新帖子。我查看的所有资源和教程仅描述了从一个自定义帖子类型获取最新帖子,而不是多个
有没有办法做到这一点?例如,在WP_Query对象或wp_get_recent_posts()函数中为post_type属性分配多个值?如果答案是肯定的,该怎么做。
任何帮助将不胜感激。
答案 0 :(得分:1)
它将从多个自定义帖子类型中提取帖子。
query_posts( array(
'post_type' => array( 'custom_post1', 'custom_post2', 'custom_post3',
'custom_post4' ),
'cat' => 3,
'showposts' => 5 )
);
答案 1 :(得分:0)
我想在这里清楚的第一件事我不了解WordPress,但我可以帮助你解决SQL查询问题 我假设你的表中有日期时间列。
select * from table name
where column name in (here write all your different types followed by comma )
order by your date time column name desc;
E.g。
select * from posts where type in(1,2,3,4) order by created_on desc;
答案 2 :(得分:0)
让我们获取所有自定义帖子类型。
$args = array('public' => true, '_builtin' => false);
$output = 'names'; // names or objects, note names is the default
$operator = 'and'; // 'and' or 'or'
$post_types = get_post_types( $args, $output, $operator );
$post_types
现在是一个包含所有自定义帖子类型名称的数组。您的所有帖子查询都应该像这样
$allposts = array( 'posts_per_page' => -1,
'post_type'=> $post_types,
'orderby' => 'date',
'order' => 'DESC'
);
$query = new WP_Query( $allposts );
if ( $query->have_posts() ) :
while ($query-> have_posts()) : $query -> the_post()
the_permalink();
the_title();
the_content();
endwhile;
endif;