我的单帖帖子页面没有显示任何内容。我已经从主题中恢复了原始的single.php,但没有任何改变。
single.php http://pastebin.com/ri6C96AX的内容 随机发布网页http://www.crossfitawac.com/onramp-6/
这些帖子是从Wodify自动发布的。我在WOD部分设置了一个显示每个帖子内容的博客网格页面,但如果我想从网站/博客页面看到一个帖子,则内容不会显示。
答案 0 :(得分:1)
您的single.php文件中似乎有一些问题。删除标题的do_shortcode()
- 仅用于Shortcodes outside of the Content Editor。相反,页面标题使用:
<?php the_title(); ?>
在你的while循环中,它正在寻找一个单独的内容模板文件。我建议您从此开始,然后在您开始工作后,您可以考虑将其移至自己的模板。
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<h1 class="entry-title"><?php the_title(); ?></h1>
<div class="entry-content">
<?php the_content(); ?>
</div>
</article>
<?php endwhile; ?>