你可以用不同的方法来解决这个问题。
一是使用简单querys 具有WP_Query 并使用p 参数检索特定帖子,如所述here.类似这样:
$the_query = new WP_Query( \'p=123\' );
while ( $the_query->have_posts() ) : $the_query->the_post();
the_content();
endwhile;
其中123是您需要数据(内容)的post id。
或者,您可以使用get_post 作用像这样:
$postid = 123;
$queryp = get_post($postid);
$content = $queryp->post_content;
$content = apply_filters(\'the_content\', $content);
$content = str_replace(\']]>\', \']]>\', $content);
echo $content;
其中123,同样是您需要从中提取内容的postid。
我想wp_get_single_post 功能也应该工作。
然后你可以控制你的内容,只需通过postid从某些帖子中提取所需的数据