Definition:
function is_rtl() {}
Checks if current locale is RTL.
Return values
returns:Whether locale is RTL.
Source code
function is_rtl() {
global $wp_locale;
return $wp_locale->is_rtl();
}
2173
Definition:
function is_rtl() {}
returns:Whether locale is RTL.
function is_rtl() {
global $wp_locale;
return $wp_locale->is_rtl();
}
2173
No comments yet... Be the first to leave a reply!