the_content not working

时间:2013-12-22 作者:littledevil

它不会在编辑器中显示内容,即我有一个图像,我使用编辑器部分中的添加媒体上传了该图像,而该部分不会显示plz帮助。。它显示缩略图,但不显示内容

我的代码如下:

 <?php if ( get_post_type() == bags ) { ?>

           <?php the_post_thumbnail(); ?>

          <?php } ?>
    <?php } ?>

   <?php if ( get_post_type() == books ) { ?>

           <?php the_content(\'editor\'); ?>
               <?php the_post_thumbnail(); ?>


          <?} ?>
    <?php } ?>
我将其用于posttypes,其中books是一个postname

1 个回复
SO网友:tfrommen

不要太粗鲁:你应该从阅读一些PHP教程开始。

这(很可能)是您在问题中想要做的:

<?php
if (\'bags\' == get_post_type())
    the_post_thumbnail();
elseif (\'books\' == get_post_type()) {
    the_content(\'editor\');
    the_post_thumbnail();
}
?>
这是否有效(如你所愿)?

结束

相关推荐