我怎样才能在博客中使用“清新干净”的主题?

时间:2012-10-13 作者:waanders

Possible Duplicate:
Limited blog support Fresh & Clean theme

我正在使用Fresh & Clean theme 我想知道如何在博客中使用这个主题。主题仅显示文章摘要,您只能使用摘要显示全文,这是撰写文章的一种非常繁琐的方式。是否有另一个使用此主题发布全文的帖子?

1 个回复
最合适的回答,由SO网友:Gary Gale 整理而成

你的问题实际上对我没有意义;但我想你说的是:“我博客的登录页只显示文章摘要,要显示完整的文章,我需要将文章作为一个页面来查看;如何在登录页上显示我文章的完整内容?”

如果确实是这样,您需要基于主题创建子主题(首选)或编辑主题的模板(如果您对创建子主题的概念不满意,则不太首选,但速度更快)。

无论采用何种方法,都需要修改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 -->
如果我误解了你的问题,而这不是你的意思,请编辑你的问题以澄清。

结束

相关推荐

Wordpress Child Themes

我试图在wordpress子主题中重新声明父主题已经在使用的函数。但是,在尝试执行此操作时,我收到一条“致命错误:无法重新声明”消息。此外,我尝试使用以下方法,但没有成功:if (!function_exists(\'jr_load_scripts\')) { // do fancy things here... } 这是the link 如果您想快速查看。。。EDIT: 以下是完整代码:if (!function_exists(\'jr_load_scripts\')) {