WordPress the_excerpt()函数文章摘要字数并加上链接
发布:smiling 来源: PHP粉丝网 添加日期:2014-06-21 15:50:45 浏览: 评论:0
the_excerpt()函数对于数字控制与给摘要带连接的技巧,希望此文章对各位会有所帮助.
WordPress里显示文章摘要的函数the_excerpt()默认是显示55个字,对于一些模板来说,只显示55个字的摘要貌似有些短,因此我们有必要在模板函数functions.php里面对the_excerpt()做个改造,使之按着我们的需求来展示更多(或更少)的摘要,改动很简单,在functions.php里加上这么一段即可:
- function emtx_excerpt_length( $length ) {
- return 92; //把92改为你需要的字数,具体就看你的模板怎么显示了。
- }
- add_filter( 'excerpt_length', 'emtx_excerpt_length' );
上面的只是对数字控制了,那么要如何给字符带上链接地址呢.处理方法很简单,我们只要往主题的functions.php里加上这么一段代码:
- function emtx_continue_reading_link() {
- return ' <a href="'. get_permalink() . '">查看全文→</a>';
- }
- function emtx_auto_excerpt_more( $more ) {
- return ' …' . emtx_continue_reading_link();
- }
- add_filter( 'excerpt_more', 'emtx_auto_excerpt_more' );
- function emtx_custom_excerpt_more( $output ) {
- if ( has_excerpt() && ! is_attachment() ) {
- $output .= emtx_continue_reading_link();
- }
- return $output;
- }
- add_filter( 'get_the_excerpt', 'emtx_custom_excerpt_more' );
Tags: the_excerpt 文章摘要字数
相关文章
- ·wordrpess the_excerpt()函数截取字符无效(2014-06-21)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)