is_ajax()WC 1.0

Is_ajax - Returns true when the page is loaded via ajax.

Хуков нет.

Возвращает

true|false.

Использование

is_ajax();

Заметки

  • Смотрите: wp_doing_ajax() for an equivalent function provided by WordPress since 4.7.0

Код is_ajax() WC 8.7.0

function is_ajax() {
	return function_exists( 'wp_doing_ajax' ) ? wp_doing_ajax() : Constants::is_defined( 'DOING_AJAX' );
}