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