Make WordPress Core


Ignore:
Timestamp:
05/14/2020 12:49:00 PM (5 years ago)
Author:
SergeyBiryukov
Message:

Docs: Add @since notes for theme features added or removed in get_theme_feature_list() after its introduction in WordPress 3.1.

See #50165.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/theme-install.php

    r47198 r47794  
    209209            </div>
    210210        <?php
    211         $feature_list = get_theme_feature_list( false ); // Use the core list, rather than the .org API, due to inconsistencies and to ensure tags are translated.
     211        // Use the core list, rather than the .org API, due to inconsistencies
     212        // and to ensure tags are translated.
     213        $feature_list = get_theme_feature_list( false );
     214
    212215        foreach ( $feature_list as $feature_name => $features ) {
    213216            echo '<fieldset class="filter-group">';
Note: See TracChangeset for help on using the changeset viewer.