我将阅读设置设置为静态页面,博客设置为一个名为“新内容”的页面。
当我转到“最新信息”页面时,我可以看到帖子内容,但没有显示带有帖子页面链接的帖子标题。我只能看到帖子的内容。
我已经尽了我所能找到错误,运气不好,请帮忙!
索引代码。php:
<div id="content" class="narrowcolumn" role="main">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div <?php post_class(); ?> id="post-<?php the_ID(); ?>">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__(\'Permanent Link to %s\'), the_title_attribute(\'echo=0\')); ?>"><?php the_title(); ?></a></h2>
<small><?php the_time(__(\'F jS, Y\')) ?> <!-- by <?php the_author() ?> --></small>
<div class="entry">
<?php the_content(__(\'Read the rest of this entry »\')); ?>
</div>
<p class="postmetadata"><?php the_tags(__(\'Tags:\') . \' \', \', \', \'<br />\'); ?> <?php printf(__(\'Posted in %s\'), get_the_category_list(\' \')); ?> | <?php edit_post_link(__(\'Edit\'), \'\', \' | \'); ?> <?php comments_popup_link(__(\'No Comments »\'), __(\'1 Comment »\'), __(\'% Comments »\'\'), \'\', __(\'Comments Closed\') ); ?></p>
</div>
<?php endwhile; ?>
我不确定它是否相关,但我已经在页面模板上注释掉了。
新功能代码。php:
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h1><?php the_title(); ?></h1>
<div class="entry">
<?php the_content(\'\'); ?>
</div>
</div>
</div>
<?php endwhile; endif; ?>
我希望有人能帮忙!如果您有任何想法,我们将不胜感激。我试着删除我的函数文件的一部分,让博客成为设置下的主页,等等。
有什么想法吗?