您现在的位置是:首页 > 教程 > WordPress教程WordPress教程
WordPress无法使用the_content()方法输出内容的解决方法
文子隐2023-07-27 22:52:38WordPress教程已有人查阅
导读在使用WordPress里在一个页面里我使用the_content()方法来输出当前页面的内容,但却显示为空,而标题,url等都没有问题
在使用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(); ?>
本文标签:
很赞哦! ()
相关文章
随机图文
-
wordpress多站点用户同步实现的方法
实现多站点模式下用户在所有博客中的同步问题,也就是说,用户注册了多站点网络中的一个站点,可以在该网络中的所有站点都可以登录。 -
wordpress做网站正常多久收录
百度收录一般是新站一个月之内只收录首页,三个月左右开始收录内页。然后文章内容如果是原创的话,收录很快,2天就可以收录,优化的好的话,可以达到秒收。 -
wordpress图片存放位置目录介绍
Wordpress中的图像文件默认存储在wp-content/uploads目录下,相关信息保存在wp_posts表中。post_type 是 attachment -
Wordpress中的主题删除方法,Wordpress中主题怎么删除
当你使用Wordpress来构建一个网站时,你可以随时改变你的主题来改变网站风格是非常方便的,但是因为Wordpress只能使用一个主题,所以替换主题是没有用的
留言与评论 (共有 条评论) |