php中的取消链接函数
是否可以删除用户定义的功能?
我的 CMS 有一项功能,我想通过添加来更新该功能。
尝试向主题的代码添加一些代码,这将使我的代码仅在打开该主题时才工作。
Is it possible to erase user-defined function?
My CMS has one function, which I want to update with additions.
Trying to add some code to theme's code, that would make my code work only when this theme is switched on.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试 rename_function() 重命名您想要覆盖的函数其他的,然后在原来的名称下写函数。
Try rename_function() to rename the function you want to override to something else and then write the function under the original name.
在选择所需的主题之前,请勿包含或启动该代码。
我的来自functions.php的默认主题代码:
主题引导中的某处:
Do not include or launch that code until the required theme is chosen.
My code for Default Theme from functions.php:
Somewhere in the theme bootstrapping: