PHP 在functions.php中使用WordPress自定义更多文本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 在functions.php中使用WordPress自定义更多文本相关的知识,希望对你有一定的参考价值。

function custom_more($more_link, $more_link_text) {
	return str_replace($more_link_text, 'Keep reading this post', $more_link);
}
add_filter('the_content_more_link', 'my_more_link', 10, 2);

以上是关于PHP 在functions.php中使用WordPress自定义更多文本的主要内容,如果未能解决你的问题,请参考以下文章

在functions.php中获取wordpress帖子ID

如何在functions.php中使用域获取表单数据和创建用户

在functions.php中入队脚本后,Javascript无法在wordpress上运行

PHP 在functions.php中启用hovercards

在 WordPress 中使用自定义 JQuery 脚本而不更新主题 functions.php

如何获取functions.php中的当前帖子类型以便全局使用?