wpseek.com
A WordPress-centric search engine for devs and theme authors



wp_maybe_disable_outgoing_pings_for_environment › WordPress Function

Since7.1.0
Deprecatedn/a
wp_maybe_disable_outgoing_pings_for_environment ( No parameters )
Defined at:
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.


Source

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' );
	}
}