Last active
February 23, 2019 17:52
-
-
Save jentheo/5504dc38a032b2f45d3f5635ccf9f617 to your computer and use it in GitHub Desktop.
Enqueue mobile styles
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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