admin管理员组

文章数量:1296307

I am using WordPress directory theme. I want to send an email to the author of the post whenever he publishes a new post. Currently, email is just sent to the administrator only. I didn't find any code utilizing wp_admin function.

I am using WordPress directory theme. I want to send an email to the author of the post whenever he publishes a new post. Currently, email is just sent to the administrator only. I didn't find any code utilizing wp_admin function.

Share Improve this question edited Jun 10, 2019 at 19:33 Marc 7315 silver badges15 bronze badges asked Aug 28, 2015 at 20:19 Asif AliAsif Ali 13 bronze badges 1
  • you need to create a plugin to do this. have you ever made a plugin ? read this : developer.wordpress/plugins/the-basics – mmm Commented Aug 28, 2015 at 20:42
Add a comment  | 

2 Answers 2

Reset to default 1

The easiest way is to tie into the WordPress action publish_post. Here is a link to the codex with a basic example:

https://codex.wordpress/Plugin_API/Action_Reference/publish_post

Note: If you are looking to do this for a Custom Post Type, you'll need to add an action for publish_custom_post_type.

Although I haven't tested it, a quick search revealed this (new) plugin which claims to do what you want:

https://wordpress/plugins/publish-post-email-notification/

Publish post notification is plugin which will send automatic email when the post is published and approved by WordPress blog. admin have to go to setting and set email template thats it all other things are managed by this plugin.

本文标签: Send email to author of post on post submission