修改the_excerpt()函数摘要末尾默认省略号[…]为更多

要修改WordPress中the_excerpt()函数的默认省略号[…]为”更多”,你可以在你的主题的functions.php文件中添加以下代码:

function custom_excerpt_more($more) {
    return ' 更多';
}
add_filter('excerpt_more', 'custom_excerpt_more');

这将更改摘要末尾的默认省略号为”更多”。你可以根据需要自定义”更多”的文本,只需修改return语句中的字符串。不要忘记保存文件以使更改生效。

© 版权声明
THE END
喜欢就支持一下吧
点赞13 分享