Skip to content

Instantly share code, notes, and snippets.

View patilvikasj's full-sized avatar
🎯
Focusing

Vikas Patil patilvikasj

🎯
Focusing
View GitHub Profile
@premanshup
premanshup / functions.php
Created August 26, 2019 10:22
Change website layout for RTL languages to LTR
add_filter(
'init',
function() {
global $wp_locale, $wp_styles;
$direction = 'ltr';
$wp_locale->text_direction = $direction;
if ( ! is_a( $wp_styles, 'WP_Styles' ) ) {
$wp_styles = new WP_Styles();