is_rtl()
Determines whether the current locale is right-to-left (RTL).
For more information on this and similar theme functions, check out the Conditional Tags article in the Theme Developer Handbook.
Хуков нет.
Возвращает
true|false. Whether locale is RTL.
Использование
is_rtl();
Заметки
- Global. WP_Locale. $wp_locale WordPress date and time locale object.
Список изменений
| С версии 3.0.0 | Введена. |
Код is_rtl() is rtl WP 6.8.3
function is_rtl() {
global $wp_locale;
if ( ! ( $wp_locale instanceof WP_Locale ) ) {
return false;
}
return $wp_locale->is_rtl();
}