标签:style blog http io ar color os 使用 sp
在使用WordPress里在一个页面里我使用the_content()方法来输出当前页面的内容,但却显示为空,而标题,url等都没有问题
<?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 无法使用the_content()方法输出内容
标签:style blog http io ar color os 使用 sp
原文地址:http://www.cnblogs.com/huangtailang/p/4129265.html