SO网友:Ignat B.
您可以使用为此类目的开发的挂钩:post_updated
每当需要比较更新前后的值时,请使用此挂钩。
让我们进行一些编码:
function mail_on_update($post_ID, $post_after, $post_before){
if($post_after->post_content != $post_before->post_content){
// wp_mail() , mail() here
}
}
add_action( \'post_updated\', \'mail_on_update\', 10, 3 ); // 10 - priority, 3 - qty of parameters passed to action callback.
将此代码放入主题中
functions.php
并使用条件逻辑修改邮件。