为什么骨骼主题使用参数调用_excerpt函数?

时间:2013-05-14 作者:turzifer

我一直在努力本地化一个以骨骼为主题的wordpress网站。

在主题的搜索中。php,有一句话是这样的:

<?php the_excerpt(\'<span class="read-more">\' . __(\'Read more &raquo;\', \'bonestheme\') . \'</span>\'); ?>
function reference 据说这个函数不带任何参数。那么,为什么这个主题会发送参数呢?

1 个回复
最合适的回答,由SO网友:fuxia 整理而成

这是主题中的一个bug。实函数确实不使用参数:

/**
 * Display the post excerpt.
 *
 * @since 0.71
 * @uses apply_filters() Calls \'the_excerpt\' hook on post excerpt.
 */
function the_excerpt() {
    echo apply_filters(\'the_excerpt\', get_the_excerpt());
}
PHP只会忽略它,但应该避免不必要的gettext调用。编写错误报告。

结束