您的模板必须具有the_content()
在Wordpress循环中调用函数,以显示创建新帖子时输入的文本。
你可能错过了the_content()
函数,该函数检索并显示页面的内容。
下面是示例用法
<?php get_header(); ?>
<div>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php the_title(); ?>
<?php the_content(); /*This code prints the content*/ ?>
<?php endwhile; endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>