- Timestamp:
- 06/16/2023 01:03:00 PM (16 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyfourteen/functions.php
r55861 r55929 65 65 * replace to change 'twentyfourteen' to the name of your theme in all 66 66 * template files. 67 * 68 * Manual loading of text domain is not required after the introduction of 69 * just in time translation loading in WordPress version 4.6. 70 * 71 * @ticket 58318 67 72 */ 68 load_theme_textdomain( 'twentyfourteen' ); 73 if ( version_compare( $GLOBALS['wp_version'], '4.6', '<' ) ) { 74 load_theme_textdomain( 'twentyfourteen' ); 75 } 69 76 70 77 /*
Note: See TracChangeset
for help on using the changeset viewer.