Hello Guys我使用了博客deisgner插件。我只想在摘录结束后的3个点意味着内容词在前面结束。请告诉我该怎么做。感谢
答案 0 :(得分:0)
默认情况下,摘录后的“阅读更多”字符串设置为' ...' 。要使用excerpt_more过滤器更改摘录“read more”字符串,请将以下代码添加到主题中的functions.php文件中:
/**
* Filter the excerpt "read more" string.
*
* @param string $more "Read more" excerpt string.
* @return string (Maybe) modified "read more" excerpt string.
*/
function wpdocs_excerpt_more( $more ) {
return '[.....]';
}
add_filter('excerpt_more', 'wpdocs_excerpt_more');
来源:https://developer.wordpress.org/reference/functions/the_excerpt/