mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
8 lines
238 B
Text
8 lines
238 B
Text
function sert_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', 'sert_no_self_ping' );
|