使用post_updated
钩子你可以在帖子更新时触发一个动作。他通过了3个参数:
$post_ID
(帖子ID),$post_after
(编辑后的post对象),$post_before
(编辑前的post对象)
以下是一个示例:
<?php
function check_values($post_ID, $post_after, $post_before){
echo \'Post ID:\';
var_dump($post_ID);
echo \'Post Object AFTER update:\';
var_dump($post_after);
echo \'Post Object BEFORE update:\';
var_dump($post_before);
}
add_action( \'post_updated\', \'check_values\', 10, 3 ); //don\'t forget the last argument to allow all three arguments of the function
?>
参见参考
Codex