我不熟悉WordPress和php。我想写一个函数,当特定帖子的内容更新时触发它。
我遇到了两个动作,save_post
和post_updated
. 我有点搞不清楚什么时候应该用一个来代替另一个。我想我需要的是post_updated
, 但我不确定。我真的不知道如何检查某个帖子是否更新了。我还没有开始太多关于它的工作(在我的非编码工作中),但在考虑了其他建议后,这里是我迄今为止的想法:
add_action(\'post_updated\', \'test_function\');
function test_function($post_ID, $post_after, $post_before){
//check if a specific post is updated here
$post_content = $post_after->post_content;
$raw_data=array(
\'updated_post_content\'=>$post_content,
);
//do something
}