Guest User

Untitled

a guest
Nov 20th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. add_action( 'save_post', 'my_save_post' );
  2. function my_save_post($post_id) {
  3. global $post;
  4.  
  5. if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) return;
  6.  
  7. $pdf = new PDF();
  8. $pdf->createPDF( $post );
  9.  
  10. // Debug
  11. print_r( $post );
  12. die();
  13. }
Add Comment
Please, Sign In to add comment