is_ajax()WC 1.0

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

No Hooks.

Return

true|false.

Usage

is_ajax();

Notes

  • See: wp_doing_ajax() for an equivalent function provided by WordPress since 4.7.0

is_ajax() code WC 8.7.0

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