Disable Self Trackbacks


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. function disable_self_ping( &$links ) {
  2. foreach ( $links as $l => $link )
  3. if ( 0 === strpos( $link, get_option( 'home' ) ) )
  4. unset($links[$l]);
  5. }
  6. add_action( 'pre_ping', 'disable_self_ping' );

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.