jetpack_external_storage_get

jetpack_external_storage_get

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: jetpack.14.9.1

apply_filters('jetpack_external_storage_get') is found 1 times:

  • /jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-options.php line 209
    			 * @param string $name    Option name, _without_ `jetpack_%` prefix.
    			 * @param mixed  $default Default value if option doesn't exist.
    			 * @return mixed External storage value, or null to fall back to database.
    			 */
    			$external_value = apply_filters( 'jetpack_external_storage_get', null, $name, $default );
    
    			// If external storage provided a value, use it
    			if ( null !== $external_value ) {
    				return $external_value;
    			}
    		}