Skip to content

Instantly share code, notes, and snippets.

@jentheo
Last active February 23, 2019 17:52
Show Gist options
  • Save jentheo/5504dc38a032b2f45d3f5635ccf9f617 to your computer and use it in GitHub Desktop.
Save jentheo/5504dc38a032b2f45d3f5635ccf9f617 to your computer and use it in GitHub Desktop.
Enqueue mobile styles
function theme_enqueue_styles() {
wp_register_style('tribemobile', '/wp-content/plugins/the-events-calendar/src/resources/css/tribe-events-full-mobile.min.css', array(), '1.0', '(max-width: 801px)');
wp_enqueue_style('tribemobile', false, array(), false, '(max-width: 801px)');
}
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment