你的问题实际上对我没有意义;但我想你说的是:“我博客的登录页只显示文章摘要,要显示完整的文章,我需要将文章作为一个页面来查看;如何在登录页上显示我文章的完整内容?”
如果确实是这样,您需要基于主题创建子主题(首选)或编辑主题的模板(如果您对创建子主题的概念不满意,则不太首选,但速度更快)。
无论采用何种方法,都需要修改post-entry.php
, 调用加载到get_template_part (\'post\', \'entry\')
在里面index.php
. 主题的post-entry.php
发货时的文件如下所示。。。
<?php while (have_posts()) : the_post(); ?>
<div class="post">
<div class="postcontent">
<?php if ( has_post_thumbnail() ) { ?>
<div class="thumbnail-wrap">
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_post_thumbnail(\'post-image\'); ?></a>
</div><!-- END thumbnail-wrap -->
<?php } ?>
<h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"> <?php the_title(); ?></a></h2>
<?php the_excerpt(); ?>
</div><!-- END Post Content -->
</div><!-- END Post -->
<?php endwhile; ?>`
。。。修改此文件以将调用更改为
the_excerpt()
到
the_content()
应该是这样的。。。
<?php while (have_posts()) : the_post(); ?>
<div class="post">
<div class="postcontent">
<?php if ( has_post_thumbnail() ) { ?>
<div class="thumbnail-wrap">
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_post_thumbnail(\'post-image\'); ?></a>
</div><!-- END thumbnail-wrap -->
<?php } ?>
<h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
<?php the_content(); ?>
</div><!-- END Post Content -->
</div><!-- END Post -->
如果我误解了你的问题,而这不是你的意思,请编辑你的问题以澄清。