WordPress 无法使用the_content()方法输出内容

在使用WordPress里在一个页面里我使用the_content()方法来输出当前页面的内容,但却显示为空,而标题,url等都没有问题

在网络上好像遇到这种情况的人很少只找到了一个说是可能是function里有函数覆盖了the_content方法
但我将function方法删除掉还是不行,然后我将代码全部删除掉只留这一句"<?php the_content()?>"
结果还是不行,无奈只能通过其他方式解决
解决方案:
使用$post对像里的属性“ <?php echo $post->post_content;?>”
 
下面是我的page.php里的所有内容
<?php
/** 内页/单页面
 * @author htl
 * @date 2014-01-28
 */
get_header();
?>
<?php get_sidebar()?>
<div id="neirong">
  <?php   if ( have_posts() ) :?>
    <h1><?php the_title();?></h1>
    <div id="content">       
      <?php 
        the_content()方法无法输出文章内容,通过$post对象里的post_content属性来输出
        //the_content();
        //print_r($post);
        echo $post->post_content;?>
    </div>
    <?php else : ?>
  <?php get_template_part( '404'); ?>
<?php endif; ?>
</div>
<!-- neirong end -->
<?php get_footer(); ?>

 





  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值