通过添加循环,您可以查询您在后端输入的所有帖子。就这样做吧
<?php
/**
* Template Name: Home
**/
get_header();
//Here i added a loop to explain you.
if ( have_posts() ) {
while ( have_posts() ) {
the_title(); // Post title
the_content(); // Post Content here
} // end while
} // end if
get_footer(); ?>
从上面的代码中,我添加了一个循环和循环内的两个函数。这将为您提供帖子及其内容,
the_content
函数将获取编辑器内容。