Horje
How to Remove pings to your own blog

Method-1: Remove pings to your own blog

Just copy and paste following codes to yourdomain.com/wp-content/themes/activated-theme/fucntions.php in the most below.
Example: PHP
// Remove pings to self
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' );





Category:
Web Tutorial
Sub Category:
Wordpress Security Shortcode
Uploaded by:
Admin