您可以在此处看到它:http://www.topscience-grant.com/test2/
我使用以下循环代码:
// The Query
$the_query = new WP_Query( $args );
// The Loop
if ( $the_query->have_posts() ) {
while ( $the_query->have_posts() ) {
$the_query->the_post();
echo the_content();
}
/* Restore original Post Data */
wp_reset_postdata();
} else {
echo 'no posts found';
}
我已将此代码放在我主题的index.php中,在WP管理员中,我创建了一个名为home的页面(我在外观上指定为静态首页 - >自定义)。
然后我在'home'页面的文本编辑器中输入了一些测试内容。为什么不显示文本内容并显示“找不到帖子”?
请帮忙。