Changeset 38364 for trunk/src/wp-includes/l10n.php
- Timestamp:
- 08/26/2016 10:19:26 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/l10n.php
r38360 r38364 1133 1133 return $output; 1134 1134 } 1135 1136 /** 1137 * Checks if current locale is RTL. 1138 * 1139 * @since 3.0.0 1140 * 1141 * @global WP_Locale $wp_locale 1142 * 1143 * @return bool Whether locale is RTL. 1144 */ 1145 function is_rtl() { 1146 global $wp_locale; 1147 return $wp_locale->is_rtl(); 1148 }
Note: See TracChangeset
for help on using the changeset viewer.