cached_mobile_groups

cached_mobile_groups

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

See hook in core

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

apply_filters('cached_mobile_groups') is found 1 times:

  • /wp-cache.php line 994
    0990
    0991
    0992
    0993
    0994
    0995
    0996
    0997
    0998
    0999
    1000
    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 ) )