Guest User

Untitled

a guest
Mar 24th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. add_filter( 'wp_insert_post_data' , 'update_author', '99', 2 );
  2.  
  3. function update_author($data , $postarr) {
  4. if ($postarr['post_status'] == 'draft') {
  5. $data['post_author'] = 45;
  6. }
  7. return $data;
  8. }
  9.  
  10. add_filter( 'wp_insert_post_data' , 'update_author', '99', 2 );
  11.  
  12. function update_author($data , $postarr) {
  13. if ($postarr['post_status'] != 'published') {
  14. $data['post_author'] = 45;
  15. }
  16. return $data;
  17. }
Add Comment
Please, Sign In to add comment