我试图制作一个功能,当帖子提交审核(待定)时会向我发送电子邮件。我试过了:
function on_post_pending( $ID, $post ) {
wp_mail(); // etc ...
}
add_action( 'pending_post', 'on_post_pending', 10, 2 );
它不起作用。我的问题是为什么不起作用?为什么下一个代码有效? :
function on_post_pending( $post ) {
wp_mail(); // etc ...
}
add_action( 'draft_to_pending', 'on_post_pending', 10, 1 );
谢谢