bbp_is_ajax()

Is this a bbPress AJAX request?


Description Description


Return Return

(bool) Looking for bbp-ajax


Top ↑

Source Source

File: includes/common/ajax.php

function bbp_is_ajax() {
	return (bool) ( ( isset( $_GET['bbp-ajax'] ) || isset( $_POST['bbp-ajax'] ) ) && ! empty( $_REQUEST['action'] ) );
}

Top ↑

Changelog Changelog

Changelog
Version Description
2.3.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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