我创造了自己的主题。在我的首页(index.php
)上,我显示了一小段帖子,最后有“阅读更多”链接。因此,当我点击阅读更多时,我会被重定向到该帖子的页面(localhost/wordpress/2014/post-title/
),但在那里,我看不到帖子的标题,而是所有内容。
index.php中的代码段
<div id="blog" class="container">
<?php query_posts('showposts=3'); ?>
<?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?>
<div class="post col-md-4">
<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<div class="entry">
<?php the_post_thumbnail(); ?>
<?php the_excerpt(__('(more…)')); ?>
<p class="postmetadata">
<?php _e('Filed under:'); ?> <?php the_category(', ') ?> <?php _e('by'); ?> <?php the_author(); ?><br />
<?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?> <?php edit_post_link('Edit', ' | ', ''); ?>
</p>
</div>
</div>
<?php endwhile; ?>
<div class="navigation">
<?php posts_nav_link(); ?>
</div>
<?php endif; ?>
</div>
那么如何在那里获得帖子标题?
答案 0 :(得分:0)
我认为人们无法帮助您使用此代码解决此问题。如果该帖子的页面没有显示帖子标题,那么您需要查看single.php
您可能忘记在<?php the_title(); ?>
文件中添加single.php
部分。