Changeset 55929 for trunk/src/wp-content/themes/twentyfifteen/functions.php
- Timestamp:
- 06/16/2023 01:03:00 PM (20 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyfifteen/functions.php
r55861 r55929 58 58 * Translations can be filed at WordPress.org. See: https://translate.wordpress.org/projects/wp-themes/twentyfifteen 59 59 * If you're building a theme based on twentyfifteen, use a find and replace 60 * to change 'twentyfifteen' to the name of your theme in all the template files 61 */ 62 load_theme_textdomain( 'twentyfifteen' ); 60 * to change 'twentyfifteen' to the name of your theme in all the template files. 61 * 62 * Manual loading of text domain is not required after the introduction of 63 * just in time translation loading in WordPress version 4.6. 64 * 65 * @ticket 58318 66 */ 67 68 if ( version_compare( $GLOBALS['wp_version'], '4.6', '<' ) ) { 69 load_theme_textdomain( 'twentyfifteen' ); 70 } 63 71 64 72 // Add default posts and comments RSS feed links to head.
Note: See TracChangeset
for help on using the changeset viewer.