?iť?

Your IP : 3.147.127.153


Current Path : /home/s/c/g/scgforma/www/old-site-backup/wp-includes/
Upload File :
Current File : /home/s/c/g/scgforma/www/old-site-backup/wp-includes/locale.php

<?php
/**
 * Locale API
 *
 * @package WordPress
 * @subpackage i18n
 * @since 1.2.0
 */

/** WP_Locale class */
require_once ABSPATH . WPINC . '/class-wp-locale.php';

/**
 * Checks if current locale is RTL.
 *
 * @since 3.0.0
 *
 * @global WP_Locale $wp_locale
 *
 * @return bool Whether locale is RTL.
 */
function is_rtl() {
	global $wp_locale;
	return $wp_locale->is_rtl();
}