Created
May 4, 2020 13:55
-
-
Save premanshup/bb3705879366cdddd4aaf189589e8125 to your computer and use it in GitHub Desktop.
Change LTR to RTL using code.
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
| add_action( 'init', 'astra_set_direction' ); | |
| function astra_set_direction() { | |
| global $wp_locale, $wp_styles; | |
| $direction = 'rtl'; | |
| $wp_locale->text_direction = $direction; | |
| if ( ! is_a( $wp_styles, 'WP_Styles' ) ) { | |
| $wp_styles = new WP_Styles(); | |
| } | |
| $wp_styles->text_direction = $direction; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment