我在看这个网站:https://chandanpandey.com/author/irinampapuc/page/2/ 其中一个PHP代码解决方案对我来说很烦人。问题是,在上午11点之前查看时,如何将帖子/页面内容中出现的所有“Hello”改为“Good Morning”?作者的答案如下:
<?php
function replace_hello(){
}
我在google上搜索了这个函数,我知道唯一可以替换字符串的函数是PHP str\\u replace()函数。
有人能确认上述功能是实际功能吗?换句话说,函数replace\\u hello()或函数replace\\u welcome()实际上是一个有效的函数吗?我可以在WordPress Codex或任何文档中找到哪里(如果有的话)了解更多信息?
最合适的回答,由SO网友:czerspalace 整理而成
这是作者用来演示如何使用的自定义函数the_content
滤器如果你看函数后面的那行add_filter(\'the_content\', \'replace_hello\');
这意味着调用自定义函数replace_hello
当遇到the_content
滤器