我需要一个wordpress钩子,可以代替[…][摘录]



我需要一个wordpress钩子,可以代替[…]

function mytheme_custom_excerpt_length( $length ) {
return 15;
}
add_filter( 'excerpt_length', 'mytheme_custom_excerpt_length', 999 );

您正在使用的过滤器是设置摘录长度。为了替换摘录末尾的[...],使用了execut_more过滤器。以下是如何将其更改为(more)的方法。

function mytheme_excerpt_more($more) {
$more = sprintf( '<a class="read-more" href="%1$s">%2$s</a>', get_permalink( get_the_ID() ), esc_html__( '(more)', 'mytheme' ) );
return $more;
}
add_filter('excerpt_more', 'mytheme_excerpt_more');

相关内容

  • 没有找到相关文章

最新更新