wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



is_rtl › WordPress Function

Seit3.0.0
Veraltetn/v
is_rtl ( Keine Parameter )
Gibt zurück:
  • (bool) Whether locale is RTL.
Definiert in:
Codex:

Determines whether the current locale is right-to-left (RTL).

For more information on this and similar theme functions, check out the {@link Conditional Tags} article in the Theme Developer Handbook.


Ähnliche Funktionen: is_tag, is_tax, is_ssl, is_robots, is_date

Quellcode

function is_rtl() {
	global $wp_locale;
	if ( ! ( $wp_locale instanceof WP_Locale ) ) {
		return false;
	}
	return $wp_locale->is_rtl();
}