Advertisement
Guest User

Untitled

a guest
Apr 24th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. <?php
  2.  
  3. add_action( 'wp_insert_post', 'log_new_url', 10, 3 );
  4. function log_new_url( $post_id, $post, $update ) {
  5.     if($update){
  6.         $after = get_permalink( $post_id );
  7.         error_log($after);
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement