cached_mobile_prefixes хук-фильтрWPSCache 1.0

Использование

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
-

Где вызывается хук

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

Где используется хук в WP Super Cache

Использование не найдено.