How to apply filter

时间:2017-01-13 作者:FlyingNimbus

我希望我的摘录短于默认的55个字符。所以我在Wordpress中找到了这个代码documentation:

/**
 * Filter the except length to 20 words.
 *
 * @param int $length Excerpt length.
 * @return int (Maybe) modified excerpt length.
 */
function wpdocs_custom_excerpt_length( $length ) {
    return 20;
}
add_filter( \'excerpt_length\', \'wpdocs_custom_excerpt_length\', 999 );
如何将此筛选器应用于代码,如下所示:

<?php the_excerpt(); ?>

1 个回复
SO网友:montrealist

把代码放进去functions.php 位于主题文件夹中的:

wp-content/themes/[your-active-theme-name]/functions.php

相关推荐

无法在模板函数.php中使用IS_HOME

我试图在标题中加载一个滑块,但只在主页上加载。如果有帮助的话,我正在使用Ultralight模板。我正在尝试(在template functions.php中)执行以下操作:<?php if ( is_page( \'home\' ) ) : ?> dynamic_sidebar( \'Homepage Widget\' ); <?php endif; ?> 但这行不通。现在,通过快速的google,我似乎需要将请