在WordPress系统中,默认的首页和目录页使用的书全文输出,这对于文章内容较长的博客来说很不方面,有两种方法可借鉴:
一是实现在WordPress首页和目录页调用文章摘要而非全文,调用文章的摘要部分的代码如下:
<?php the_excerpt(); ?>
二是对文章全文进行适当的截断,代码如下:
<p><?php echo mb_strimwidth(strip_tags(apply_filters('the_content', $post->post_content)), 0, 290,"..."); ?></p>
阅读全文的链接代码如下:
<?php the_permalink() ?>
调用方法:
<a href="<?php the_permalink() ?>" title="阅读全文">ReadMore</a>
(责任编辑:最模板) |