下面由wordpress教程栏目给大家介绍wordpress无法使用the_content()方法输出内容的解决办法,希望对需要的朋友有所帮助!
在使用WordPress里在一个页面里我使用the_content()方法来输出当前页面的内容,但却显示为空,而标题,url等都没有问题
在网络上好像遇到这种情况的人很少只找到了一个说是可能是function里有函数覆盖了the_content方法
但我将function方法删除掉还是不行,然后我将代码全部删除掉只留这一句"ntent()?>"
结果还是不行,无奈只能通过其他方式解决
解决方案:
使用$post对像里的属性“ post_content;?>”
下面是我的page.php里的所有内容
<?phpget_header();?><?phpget_sidebar()?><divid="neirong"><?phpif(have_posts()):?><h1><?phpthe_title();?></h1><divid="content"><?phpthe_content()方法无法输出文章内容,通过$post对象里的post_content属性来输出//the_content();//print_r($post);echo$post->post_content;?></div><?phpelse:?><?phpget_template_part('404');?><?phpendif;?></div><!--neirongend--><?phpget_footer();?>