Guest User

Untitled

a guest
Jul 17th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. add_action('post_updated', 'test_function');
  2.  
  3. function test_function($post_ID, $post_after, $post_before){
  4.  
  5. //check if a specific post is updated here
  6.  
  7. $post_content = $post_after->post_content;
  8.  
  9. $raw_data=array(
  10. 'updated_post_content'=>$post_content,
  11. );
  12.  
  13. //do something
  14.  
  15. }
Add Comment
Please, Sign In to add comment