如果我有自定义帖子类型,例如“电影”,我如何回应此自定义帖子类型的5个最新帖子。
我试过
<?php
$type = 'movies';
$args=array(
'post_type' => $type,
'post_status' => 'publish',
'posts_per_page' => -5,
'caller_get_posts'=> 5
$my_query = null;
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) {
while ($my_query->have_posts()) : $my_query->the_post(); ?>
<p><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></p>
<?php
endwhile;
}
wp_reset_query(); // Restore global post data stomped by the_post().
?>
这不会返回任何内容
答案 0 :(得分:1)
这会从您的自定义帖子类型
中提取最新帖子 $new_loop = new WP_Query( array(
'post_type' => 'movies',
'posts_per_page' => 5 // put number of posts that you'd like to display
) );
//错误&#39; posts_per_page&#39; =&GT; -5
答案 1 :(得分:0)
您共享的代码中存在多个语法错误。
要回答您的问题,posts_per_page
应为正整数,并且应删除caller_get_posts
(多年前已弃用)。
$args=array(
'post_type' => 'movies',
'post_status' => 'publish',
'posts_per_page' => 5,
);
$my_query = new WP_Query($args);