发现很多wordpress主题只支持摘要不知道怎么回事!昨天看了下自己的主题与不能显示的主题发现了解决办法!
在index.php中在到
- <h2><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
这行这是标题行看到后下面就是摘要部分很多都是显示显示全文
在下面这行把调用标签删除了
然后粘贴一下代码实现调用摘要
- <?php if(is_category() || is_archive() || is_home() ) {
the_excerpt();
} else {
the_content('Read the rest of this entry »');
这样就好了!
呵呵,是这样的