wp_doing_ajax

Advertisement

Summery Summery

Determines whether the current request is a WordPress Ajax request.

Syntax Syntax

wp_doing_ajax()

Return Return

(bool) True if it's a WordPress Ajax request, false otherwise.

Source Source

File: wp-includes/load.php

/**
 * Determines whether a PHP ini value is changeable at runtime.
 *
 * @since 4.6.0
 *
 * @link https://www.php.net/manual/en/function.ini-get-all.php
 *
 * @param string $setting The name of the ini setting to check.
 * @return bool True if the value is changeable at runtime. False otherwise.
 */

Advertisement

Changelog Changelog

Changelog
Version Description
4.7.0 Introduced.

Advertisement

Leave a Reply