Last active
December 11, 2018 17:01
-
-
Save wolfthemes/5d9bea840564afef5565960b820e888a to your computer and use it in GitHub Desktop.
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
| /** | |
| * Enqueue RTL CSS stylesheet | |
| */ | |
| function enqueue_rtl_styles() { | |
| // Dequeue main CSS file | |
| wp_dequeue_style( 'theme-style' ); // replace "theme" by your the theme slug | |
| wp_deregister_style( 'theme-style' ); // replace "theme" by your the theme slug | |
| // Enqueue auto-generated rtl CSS file | |
| wp_enqueue_style( 'rtl', get_template_directory_uri() . '/rtl.css' ); | |
| } | |
| add_action( 'enqueue_rtl_styles', 'theme_enqueue_styles', 999 ); // replace "theme" by your the theme slug |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment