在“publish_post”期间获取帖子和海报信息在 WordPress 中

发布于 2024-10-31 22:08:54 字数 86 浏览 1 评论 0原文

使用publish_post钩子,我想访问用户发帖的电子邮件地址(如果我无法获取,即使只是他们的用户ID也可以)和帖子的ID。

我该怎么办呢?

Using the publish_post hook, I want access to the email address of the user posting (even just their user id will work if I can't get that) and the id of the post.

How would I go about that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

无人问我粥可暖 2024-11-07 22:08:54
global $post;
$author_id = $post->post_author;
global $post;
$author_id = $post->post_author;
甜扑 2024-11-07 22:08:54

由于您可以获取帖子 ID(使用 $ID$post_id),因此您应该避免使用 global,因为引用全局变量可能会产生意想不到的后果将来。改为这样做:

add_action("publish_post", "your_function", 10, 1);
function your_function($post_id) {
    $post = get_post($post_id);
    $author_id = $post->post_author; /* Post author ID. */
    $email = get_the_author_meta( 'user_email', $author_id );
}

Since you can get the post id (with $ID or $post_id) you should avoid using global since referencing a global variable might give unintended consequences in the future. Do this instead:

add_action("publish_post", "your_function", 10, 1);
function your_function($post_id) {
    $post = get_post($post_id);
    $author_id = $post->post_author; /* Post author ID. */
    $email = get_the_author_meta( 'user_email', $author_id );
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文