- Timestamp:
- 06/16/2023 01:03:00 PM (15 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentythirteen/functions.php
r55861 r55929 76 76 * replace to change 'twentythirteen' to the name of your theme in all 77 77 * template files. 78 */ 79 load_theme_textdomain( 'twentythirteen' ); 78 * 79 * Manual loading of text domain is not required after the introduction of 80 * just in time translation loading in WordPress version 4.6. 81 * 82 * @ticket 58318 83 */ 84 if ( version_compare( $GLOBALS['wp_version'], '4.6', '<' ) ) { 85 load_theme_textdomain( 'twentythirteen' ); 86 } 80 87 81 88 /*
Note: See TracChangeset
for help on using the changeset viewer.