Skip to content

Instantly share code, notes, and snippets.

Created December 17, 2015 14:48
Embed
What would you like to do?
<?php
/**
* Keine eigenen Pingbacks zulassen
*
*/
function democratic_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', 'democratic_no_self_ping' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment