在“publish_post”期间获取帖子和海报信息在 WordPress 中
使用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
由于您可以获取帖子 ID(使用
$ID
或$post_id
),因此您应该避免使用global
,因为引用全局变量可能会产生意想不到的后果将来。改为这样做:Since you can get the post id (with
$ID
or$post_id
) you should avoid usingglobal
since referencing a global variable might give unintended consequences in the future. Do this instead: