【发布时间】:2018-05-20 08:40:53
【问题描述】:
我是 WordPress 新手,我需要检索所有帖子的内容和标题,但找不到我的方式。这是我的代码。
require_once("blog/wp-load.php");
$the_query = new WP_Query( ['posts_per_page' = -1]);
if ( $the_query->have_posts() ) {
while ( $the_query->have_posts() ) {
$the_query->the_post();
$a= $the_query->post_content;
echo $a;
}
wp_reset_postdata();
}
它给了我一个空白页
【问题讨论】: