Skip to content

Instantly share code, notes, and snippets.

@ingozoell
Created July 27, 2016 14:14
Show Gist options
  • Save ingozoell/70715ef1009a47030ce16b90dd551237 to your computer and use it in GitHub Desktop.
Save ingozoell/70715ef1009a47030ce16b90dd551237 to your computer and use it in GitHub Desktop.
function no_self_ping( &$links ) {
$home = get_option( 'home' );
foreach ( $links as $l => $link )
if ( 0 === strpos( $link, $home ) )
unset($links[$l]);
}
add_action( 'pre_ping', 'no_self_ping' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment