在 WordPress 中是否可以根据标题的长度更改摘录长度?
我只是这样称呼标题:
<?php the_title(); ?>
摘录:
<?php html5wp_excerpt('html5wp_index'); // in my functions.php I set the length ?>
函数.php
function html5wp_index($length);
{
return 25;
}
那么如果标题是 15 个字符,那么摘录就只有 10 个字符?