cached_mobile_prefixes filter-hookWPSCache 1.0

Usage

add_filter( 'cached_mobile_prefixes', 'wp_kama_cached_mobile_prefixes_filter' );

/**
 * Function for `cached_mobile_prefixes` filter-hook.
 * 
 * @param  $wp_cache_mobile_prefixes 
 *
 * @return 
 */
function wp_kama_cached_mobile_prefixes_filter( $wp_cache_mobile_prefixes ){

	// filter...
	return $wp_cache_mobile_prefixes;
}
$wp_cache_mobile_prefixes
-

Where the hook is called

wp_cache_manager()
cached_mobile_prefixes
wp-super-cache/wp-cache.php 978
$wp_cache_mobile_prefixes = apply_filters( 'cached_mobile_prefixes', $wp_cache_mobile_prefixes ); // Allow mobile plugins access to modify the mobile UA prefix list

Where the hook is used in WP Super Cache

Usage not found.