改进WordPress™ _execrpt()模板标记
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了改进WordPress™ _execrpt()模板标记相关的知识,希望对你有一定的参考价值。
function improved_trim_excerpt($text) { global $post; if ( '' == $text ) { $text = get_the_content(''); $text = apply_filters('the_content', $text); $excerpt_length = 80; } } return $text; } remove_filter('get_the_excerpt', 'wp_trim_excerpt'); add_filter('get_the_excerpt', 'improved_trim_excerpt');
以上是关于改进WordPress™ _execrpt()模板标记的主要内容,如果未能解决你的问题,请参考以下文章
Wordpress 模板 - “可捕获的致命错误:__PHP_Incomplete_Class 类的对象无法转换为字符串”