wppaste
WordPress

wp_using_ext_object_cache( bool $using = null ): bool

Since
3.7.0
Source
wp-includes/load.php:806
Toggles $_wp_using_ext_object_cache on and off without directly touching global.

Parameters

$usingbooloptional
Whether external object cache is being used.Default: null

Return

bool
The current 'using' setting.

Used by · 14

Show all 14

Source

function wp_using_ext_object_cache( $using = null ) {	global $_wp_using_ext_object_cache; 	$current_using = $_wp_using_ext_object_cache; 	if ( null !== $using ) {		$_wp_using_ext_object_cache = $using;	} 	return $current_using;}

History

Introduced in 3.7.0. Unchanged from 6.7.7 through 7.1.0.

  1. 6.7.7
  2. 6.8.8
  3. 6.9.7
  4. 7.0.4
  5. 7.1.0

Signature, return type and hooks compared across 5 parsed releases.

About this page

Parsed data
Generated from the wordpress-develop 6.8.8 tag, from src/wp-includes/load.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
Corrections
Something wrong on this page? Report it and it gets fixed in the next regeneration.