无法从插件文件访问 WordPress 功能
我在创建插件时遇到了这个问题。我无法调用(访问)wordpress 默认函数,例如 wp_get_current_user()
、$wpdb->get_results()
、admin_url()
等来自我的插件文件。我可以从该插件的主文件中访问它们,其中给出了插件描述。但我无法从其他插件文件访问它们。当时我听说如果我们创建一个新文件functions.php并将这些代码放入该文件中的一个函数中我就可以访问所有wordpress函数。我就这么做了。但现在我无法访问该新功能。我该如何解决这个问题?我想你们都明白我说的话了。请帮我。
I came across this problem when I was creating a plugin. I cannot call(access ) wordpress default functions like wp_get_current_user()
, $wpdb->get_results()
, admin_url()
etc. from my plugin files. I can access them from my main file of that plugin in which plugin description is given. But I cannot access them from other plugin files. At that time I heard that if we create a new file functions.php and put these code in that file inside a function I can access all wordpress functions. I did so. But now I cannot access that new function. How can I solve this problem? I think you guys understood what I said. Please help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
@Jan:我得到了所需的东西。我只是将
require_once('../../../wp-load.php');
放入我的插件文件中,现在可以从那里访问所有 wp 函数。任何方式感谢您的回复。@Jan : I got the required thing. I just put
require_once('../../../wp-load.php');
in my plugin files and now can access all wp functions from there. Any ways thanks for your reply.