wp_maybe_disable_outgoing_pings_for_environment()
Removes outgoing ping callbacks in non-production environments.
Hooked to do_all_pings priority 1 so it runs before the default priority 10 callbacks. Does not remove do_all_enclosures.
Хуков нет.
Возвращает
null. Ничего (null).
Использование
wp_maybe_disable_outgoing_pings_for_environment();
Список изменений
| С версии 7.1.0 | Введена. |
Код wp_maybe_disable_outgoing_pings_for_environment() wp maybe disable outgoing pings for environment WP 7.1.2
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' );
}
}