Changeset 52929 for trunk/src/wp-content/themes/twentyeleven/functions.php
- Timestamp:
- 03/13/2022 08:01:05 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyeleven/functions.php
r51103 r52929 930 930 } 931 931 add_action( 'wp_body_open', 'twentyeleven_skip_link', 5 ); 932 933 if ( ! function_exists( 'wp_get_list_item_separator' ) ) : 934 /** 935 * Retrieves the list item separator based on the locale. 936 * 937 * Added for backward compatibility to support pre-6.0.0 WordPress versions. 938 * 939 * @since 6.0.0 940 */ 941 function wp_get_list_item_separator() { 942 /* translators: Used between list items, there is a space after the comma. */ 943 return __( ', ', 'twentyeleven' ); 944 } 945 endif;
Note: See TracChangeset
for help on using the changeset viewer.