【发布时间】:2011-06-06 12:30:55
【问题描述】:
我有一个 wordpress 博客主题,它可以很好地显示索引上所有帖子的内容,但是当我点击其中一个帖子时,帖子的内容是空白的,我似乎无法弄清楚为什么。如果我是正确的 single.php 控制该页面。
http://pastebin.com/afLVxMPb = 我的单身.php
我的意思是http://www.ndesign-studio.com/demo/wordpress/blog/how-about-a-blog-post-with-longer-title 的一个例子,但在这个网站上,博客文章的内容确实会显示,但在我的网站上却没有。
我认为问题出在此处......
<div class="entry-content">
<?php the_content(); ?>
<?php wp_link_pages('before=<div class="page-link">' . __( 'Pages:', 'your-theme' ) . '&after=</div>') ?>
</div><!-- .entry-content -->
【问题讨论】:
标签: php html css wordpress wordpress-theming