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

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

add_filter( 'cached_mobile_groups', 'wp_kama_cached_mobile_groups_filter' );

/**
 * Function for `cached_mobile_groups` filter-hook.
 * 
 * @param  $array 
 *
 * @return 
 */
function wp_kama_cached_mobile_groups_filter( $array ){

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

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

wp_cache_manager()
cached_mobile_groups
wp-super-cache/wp-cache.php 983
$mobile_groups = apply_filters( 'cached_mobile_groups', array() ); // Group mobile user agents by capabilities. Lump them all together by default

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

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