Hello ,
There are a lot of LTR beautiful themes ,
I want to take an LTR theme and make him RTL ,
can someone provide me the way to do it ?
~Thanks , Hen .
Hello ,
There are a lot of LTR beautiful themes ,
I want to take an LTR theme and make him RTL ,
can someone provide me the way to do it ?
~Thanks , Hen .
help please
Add the below ↓ code inside functions.php (Admin Dashboard > Themes > Theme Editor > functions.php). Then you'll need to upload ltr.css or rtl.css inside your theme's dir. The function will load "locale" stylesheet base on your WP locale settings.
<?php
function print_locale_styles(){
if ( ($uri = get_locale_stylesheet_uri()) != ''){
echo '<link rel="stylesheet" href="'.$uri.'" type="text/css" media="all" />');
}
}
add_action('wp_head','print_locale_styles',42);
?>This topic has been closed to new replies.