Skip to content

Instantly share code, notes, and snippets.

@premanshup
Created May 4, 2020 13:55
Show Gist options
  • Select an option

  • Save premanshup/bb3705879366cdddd4aaf189589e8125 to your computer and use it in GitHub Desktop.

Select an option

Save premanshup/bb3705879366cdddd4aaf189589e8125 to your computer and use it in GitHub Desktop.
Change LTR to RTL using code.
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