如果你仔细看一下wp_insert_post()
, 你会看到的
do_action( \'wp_insert_post\', $post_ID, $post, $update );
在它的结尾。因此,在创建帖子后,您可以挂接到该帖子并执行任何您想要的任务。
在你的主题中functions.php
或者在插件文件中:
do_action( \'wp_insert_post\', \'send_notification\');
function send_notification($post_ID, $post, $update){
//your code here
}