限制摘录™s字数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了限制摘录™s字数相关的知识,希望对你有一定的参考价值。
One thing that can go wrong in WordPress magazine themes is when users include too many words before the more tag.
/** * Limit The Excerpt’s Word Count * * http://www.smashingmagazine.com/2011/12/07/10-tips-optimize-wordpress-theme/ * * */ function ilc_excerpt_length( $length ){ return 10; } add_filter('excerpt_length', 'ilc_excerpt_length');
以上是关于限制摘录™s字数的主要内容,如果未能解决你的问题,请参考以下文章