$desktop, 'tablet' => $tablet, 'mobile' => $mobile, 'mobile-menu' => $mobile_menu, ) ); return $queries[ $name ]; } /** * Get our CSS print method. * * @since 1.11.0 */ function generate_get_css_print_method() { $mode = apply_filters( 'generatepress_dynamic_css_print_method', 'inline' ); if ( ( function_exists( 'is_customize_preview' ) && is_customize_preview() ) || is_preview() ) { return 'inline'; } if ( ! defined( 'GENERATE_VERSION' ) ) { return 'inline'; } return $mode; }