添加新文件并从该文件调用函数会产生未定义的函数 add_action()
我将一个名为 subtypes.php 的新文件添加到我的主题 /library/includes 中,以便允许动态下拉列表。该文件使用 /library/functions/custom_functions.php 中的函数。
问题:每当我从 custom_functions.php 调用任何函数时,都会出现致命错误:调用未定义的函数 add_action(),其他时候我会得到未定义的函数 get_option()。在我看来,新文件不会加载一些默认库等等......任何帮助将非常感激。
非常感谢!
I am adding a new file called subtypes.php to my theme /library/includes in order to allow for a dynamic dropdown list. This file uses functions from /library/functions/custom_functions.php.
The problem: whenever I call any function from custom_functions.php, I get fatal errors: Call to undefined function add_action(), other times I get undefined function get_option(). It seems to me that the new file doesn't load some default libraries or so....Any help willl be very much appreciated.
Thank you very much!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将
include_once "../functions/custom_functions.php"
放在 subtypes.php 的顶部Put
include_once "../functions/custom_functions.php"
at the top of subtypes.php