PHP 邮件程序与 WordPress - 如何提取管理员电子邮件?

发布于 2024-09-28 11:56:16 字数 355 浏览 3 评论 0原文

我正在尝试在我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鱼忆七猫命九 2024-10-05 11:56:16

使用导入 WordPress 的函数

include "/path/to/your/wordpress/wp-blog-header.php";

之后,您将能够调用 get_bloginfo()

Import WordPress's functions using

include "/path/to/your/wordpress/wp-blog-header.php";

After that, you will be able to call get_bloginfo().

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文