wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_maybe_disable_outgoing_pings_for_environment › WordPress Function

Seit7.1.0
Veraltetn/v
wp_maybe_disable_outgoing_pings_for_environment ( Keine Parameter )
Definiert in:
Codex:

Removes outgoing ping callbacks in non-production environments.

Hooked to do_all_pings at priority 1 so it runs before the default priority 10 callbacks. Does not remove do_all_enclosures.


Quellcode

function wp_maybe_disable_outgoing_pings_for_environment() {
	if ( wp_should_disable_pings_for_environment() ) {
		remove_action( 'do_all_pings', 'do_all_pingbacks' );
		remove_action( 'do_all_pings', 'do_all_trackbacks' );
		remove_action( 'do_all_pings', 'generic_ping' );
	}
}