通过Word计数的Wordpress分隔符功能

时间:2012-09-10 20:47:37

标签: wordpress wordpress-plugin

我有一个插件,其中字符受到指定值的限制

使用

wp_html_excerpt($title, $truncatetitlechar)

如何通过单词计数来区分$title

我想使用像

这样的东西
excerpt($truncatetitlechar)

有什么建议吗?

1 个答案:

答案 0 :(得分:0)

假设你试图在模板文件中截断标题,你可以在functions.php中定义一个新函数:

function my_title($insert = '...', $words = 10) {
    $title_pieces = explode(' ', get_the_title());
    echo implode(' ', array_splice($title_pieces, 0, $words)) . $insert;
}

并在循环中调用它而不是默认的wordpress标题函数:

my_title();

您也可以在调用时将参数传递给函数,或者更改上述函数中的默认值。第一个参数是在修剪标题的末尾添加的内容,第二个参数是您希望允许的单词数。

此答案是thisthis的组合。