From d1b3a7453ab6fc8fd637e9fbde3cd0581b75f1a0 Mon Sep 17 00:00:00 2001 From: Carrie Dils Date: Sat, 8 Nov 2014 09:44:17 -0600 Subject: [PATCH] Removed is_rtl check Unnecessary --- functions.php | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/functions.php b/functions.php index 8320b03..a691768 100755 --- a/functions.php +++ b/functions.php @@ -58,12 +58,8 @@ function in_the_beginning_enqueue_assets() { // Load Google fonts wp_enqueue_style( 'in-the-beginning-fonts', in_the_beginning_fonts_url(), array(), null ); - // Check if the current locale is RTL script - if ( is_rtl() ) { - - // Replace style.css with style-rtl.css for RTL languages - wp_style_add_data( 'in-the-beginning', 'rtl', 'replace' ); - } + // Replace style.css with style-rtl.css for RTL languages + wp_style_add_data( 'in-the-beginning', 'rtl', 'replace' ); } /**