PHP 邮件程序与 WordPress - 如何提取管理员电子邮件?
我正在尝试在我的 WordPress 主题中使用邮件程序,但我似乎无法从 WordPress 中提取管理电子邮件。
我的主题文件夹中有一个 mailer.php 文件,并尝试使用 get_bloginfo('admin_email') 函数,但它不起作用。我是 PHP 新手,但我猜测 mailer.php 文件没有“连接”到 WordPress 安装。我尝试将其包含在functions.php文件中,但这只导致我的主题变成空白。
所以我的问题是,如何在非主题文件的文件中提取 WordPress 功能?
回答 Pekka 的评论 - 我收到一个错误: 致命错误:调用 mailer.php 第 4 行中未定义的函数 get_bloginfo()
I'm trying to use a mailer in my WordPress theme, but I don't seem to be able to pull admin email from WordPress.
I have a mailer.php file in my theme folder and tried using get_bloginfo('admin_email')
function but it doesn't work. I'm a PHP newbie, but I'm guessing the mailer.php file isn't "connected" to WordPress installation. I tried including it in the functions.php file, but it only caused my theme to go blank.
So my question is, how do I pull WordPress functions in files, that aren't theme files?
To answer Pekka's comment - I get an error:
Fatal error: Call to undefined function get_bloginfo() in mailer.php on line 4
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用导入 WordPress 的函数
之后,您将能够调用
get_bloginfo()
。Import WordPress's functions using
After that, you will be able to call
get_bloginfo()
.