我正在尝试通过 ID检索单个帖子。Stories
是我的自定义帖子类型,它目前有三个帖子:
博客 1 (ID: 1)
博客 2 (ID: 14)
博客 3 (ID: 49)
我有一个名为$story_one
. $story_one
的值为14
。
我现在正试图从ID
14 的帖子中检索信息,所以我已经完成了:
<?php
$args = array(
'post_type' => 'stories',
'id' => $story_one,
'posts_per_page' => 1
);
$query = new WP_Query( $args );
if( $query->have_posts() ) {
while( $query->have_posts() ) {
$query->the_post();
the_title();
}
wp_reset_postdata();
}
?>
这将返回博客 3。博客 3 是stories. 当我指定它从 ID 为 14(博客 2)的帖子中提取内容时,为什么会这样。向我展示最新博客的内容?
白衣染霜花
POPMUISE
长风秋雁