Changeset 39456
- Timestamp:
- 12/03/2016 04:15:33 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/locale.php
r39455 r39456 9 9 10 10 _deprecated_file( basename( __FILE__ ), '4.7.0' ); 11 12 /** WP_Locale class */13 require_once ABSPATH . WPINC . '/class-wp-locale.php';14 15 /**16 * Checks if current locale is RTL.17 *18 * @since 3.0.019 *20 * @global WP_Locale $wp_locale21 *22 * @return bool Whether locale is RTL.23 */24 function is_rtl() {25 global $wp_locale;26 return $wp_locale->is_rtl();27 }
Note: See TracChangeset
for help on using the changeset viewer.