wp_cache_supports() – Determines whether the object cache implementation supports a particular feature.

You appear to be a bot. Output may be restricted

Description

Determines whether the object cache implementation supports a particular feature.

Usage

$bool = wp_cache_supports( $feature );

Parameters

$feature
( string ) required – Name of the feature to check for. Possible values include: 'add_multiple', 'set_multiple', 'get_multiple', 'delete_multiple', 'flush_runtime', 'flush_group'.

Returns

bool True if the feature is supported, false otherwise.

Source

File name: wordpress/wp-includes/cache-compat.php


Lines:

1 to 4 of 4
  function wp_cache_supports( $feature ) {
    return false;
  }
 

 View on GitHub View on Trac