Make WordPress Core


Ignore:
Timestamp:
06/16/2023 01:03:00 PM (16 months ago)
Author:
swissspidy
Message:

Bundled Themes: Remove load_theme_textdomain() calls from default themes.

Since WordPress 4.6 introduced just-in-time translation loading, themes and plugins no longer need to manually call load_theme_textdomain/load_plugin_textdomain, unless they are on a version prior to 4.6.

This change removes the load_theme_textdomain() call from Twenty Seventeen and up, since these themes all require at least WordPress 4.7.
On older default themes, load_theme_textdomain() is called conditionally depending on the WordPress version.

Props piyushtekwani.
Fixes #58318.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentyfourteen/functions.php

    r55861 r55929  
    6565         * replace to change 'twentyfourteen' to the name of your theme in all
    6666         * 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
    6772         */
    68         load_theme_textdomain( 'twentyfourteen' );
     73        if ( version_compare( $GLOBALS['wp_version'], '4.6', '<' ) ) {
     74            load_theme_textdomain( 'twentyfourteen' );
     75        }
    6976
    7077        /*
Note: See TracChangeset for help on using the changeset viewer.