Wordpress摘录自定义字数限制
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress摘录自定义字数限制相关的知识,希望对你有一定的参考价值。
<?php //this part goes to functions.php function string_limit_words($string, $word_limit) { //add a ... at last article when more than limit word count //otherwise } //this part goes to template $excerpt = get_the_excerpt(); echo string_limit_words($excerpt,25); ?>
以上是关于Wordpress摘录自定义字数限制的主要内容,如果未能解决你的问题,请参考以下文章