WP_Customize_Manager::doing_ajax
Returns true if it's an Ajax request.
Метод класса: WP_Customize_Manager{}
Хуков нет.
Возвращает
true|false. True if it's an Ajax request, false otherwise.
Использование
$WP_Customize_Manager = new WP_Customize_Manager(); $WP_Customize_Manager->doing_ajax( $action );
- $action(строка|null)
- Whether the supplied Ajax action is being run.
По умолчанию:null
Список изменений
| С версии 3.4.0 | Введена. |
| С версии 4.2.0 | Added $action param. |
Код WP_Customize_Manager::doing_ajax() WP Customize Manager::doing ajax WP 6.9.1
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;
}
}