Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. add_filter( 'wp_insert_post_data', 'se338236_change_date', 99 );
  2. function se338236_change_date( $data )
  3. {
  4. //
  5. // uncomment to apply changes only to selected post types
  6.  
  7. //$types = [ 'PAGE', 'SOME_CUSTOM_POST_TYPE' ];
  8. //if ( isset($data['post_type']) && in_array( $data['post_type'], $types ) {
  9.  
  10. $data['post_date'] = $data['post_modified'];
  11. $data['post_date_gmt'] = $data['post_modified_gmt'];
  12.  
  13. //}
  14. return $data;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement