wordpress the_content无法在页面模板上工作

时间:2012-11-22 06:53:07

标签: wordpress templates

我有一个WordPress模板页面,显示页眉,页脚和侧边栏,但没有显示任何人的内容可以提供帮助吗?

<?php
/**
 * Template Name: Template 2
 */
?>

<?php get_header(); ?>

<div class="main_right" style="float:right;">
    <?php get_sidebar(1); ?>                        
 </div> 
<div style="float:left">    

<?php if (have_posts()) : while (have_posts()) : the_post(); ?>

<?php echo the_content();?>

<?php endwhile; endif; ?>
</div>

<?php get_footer(); ?>

1 个答案:

答案 0 :(得分:2)

这是否在你的wordpress循环中?它必须是为了使__content工作。

此外,您不需要回复该功能,只需将其放在您的文件中即可......

<?php the_content(); ?>

另外,为什么要将内容包装在<p>标签中? Wordpress会自动为您完成此操作。如果你想把它包装成<div>会更好,可能有一个类或id用于css使用。

您是否看过wordpress codex? - http://codex.wordpress.org/Function_Reference/the_content