WP_Customize_Manager::doing_ajax( string|null $action = null ): bool

In this article

Returns true if it’s an Ajax request.

Parameters

$actionstring|nulloptional
Whether the supplied Ajax action is being run.

Default:null

Return

bool True if it’s an Ajax request, false otherwise.

Source

public function doing_ajax( $action = null ) {
	if ( ! wp_doing_ajax() ) {
		return false;
	}

	if ( ! $action ) {
		return true;
	} else {
		/*
		 * Note: we can't just use doing_action( "wp_ajax_{$action}" ) because we need
		 * to check before admin-ajax.php gets to that point.
		 */
		return isset( $_REQUEST['action'] ) && wp_unslash( $_REQUEST['action'] ) === $action;
	}
}

Changelog

VersionDescription
4.2.0Added $action param.
3.4.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.