Changeset 55929 for trunk/src/wp-content/themes/twentytwelve/functions.php
- Timestamp:
- 06/16/2023 01:03:00 PM (17 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentytwelve/functions.php
r55476 r55929 52 52 * If you're building a theme based on Twenty Twelve, use a find and replace 53 53 * to change 'twentytwelve' to the name of your theme in all the template files. 54 */ 55 load_theme_textdomain( 'twentytwelve' ); 54 * 55 * Manual loading of text domain is not required after the introduction of 56 * just in time translation loading in WordPress version 4.6. 57 * 58 * @ticket 58318 59 */ 60 if ( version_compare( $GLOBALS['wp_version'], '4.6', '<' ) ) { 61 load_theme_textdomain( 'twentytwelve' ); 62 } 56 63 57 64 // This theme styles the visual editor with editor-style.css to match the theme style.
Note: See TracChangeset
for help on using the changeset viewer.