cached_mobile_groups

cached_mobile_groups

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wp-super-cache.1.9.4

apply_filters('cached_mobile_groups') is found 1 times:

  • /wp-cache.php line 920
    	if ( function_exists( 'do_cacheaction' ) ) {
    		$wp_cache_mobile_browsers = do_cacheaction( 'wp_super_cache_mobile_browsers', $wp_cache_mobile_browsers );
    		$wp_cache_mobile_prefixes = do_cacheaction( 'wp_super_cache_mobile_prefixes', $wp_cache_mobile_prefixes );
    	}
    	$mobile_groups = apply_filters( 'cached_mobile_groups', array() ); // Group mobile user agents by capabilities. Lump them all together by default
    	// mobile_groups = array( 'apple' => array( 'ipod', 'iphone' ), 'nokia' => array( 'nokia5800', 'symbianos' ) );
    
    	$wp_cache_mobile_browsers = implode( ', ', $wp_cache_mobile_browsers );
    	$wp_cache_mobile_prefixes = implode( ', ', $wp_cache_mobile_prefixes );
    
    	if ( false == apply_filters( 'wp_super_cache_error_checking', true ) )