我的 the_content() 函数不起作用。请检查下面附上的我的代码。此代码是在页面模板中编写的。
<div class="row marT20" >
<div class="content">
<?php
while ( have_posts() )
{
the_post();
?>
<h2><?php the_title(); ?></h2>
<p class="marT20"><?php the_content(); ?></p>
<?php
}
?>
</div>
这没有显示任何内容,但标题正在打印。
编辑:-
我自己解决了这个问题......这是我编写functions.php的错。