Make WordPress Core


Ignore:
Timestamp:
09/17/2023 03:31:32 PM (15 months ago)
Author:
joedolson
Message:

Administration: Use wp_admin_notice() more in wp-admin/.

Add additional usage of wp_admin_notice() in wp-admin/ on .error and miscellaneous usages previously overlooked.

Follow up to [56408], [56409], [56410], [56518], [56570], [56571], [56572], [56573], [56576], [56589], [56590], [56597], [56599].

Props costdev, joedolson.
See #57791.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/update-core.php

    r56570 r56600  
    10731073            $theme_updates = get_theme_updates();
    10741074            if ( ! empty( $theme_updates ) ) {
    1075                 echo '<div class="error"><p>';
    1076                 _e( 'Please select one or more themes to update.' );
    1077                 echo '</p></div>';
     1075                wp_admin_notice(
     1076                    __( 'Please select one or more themes to update.' ),
     1077                    array(
     1078                        'additional_classes' => array( 'error' ),
     1079                    )
     1080                );
    10781081            }
    10791082        } else {
    10801083            $plugin_updates = get_plugin_updates();
    10811084            if ( ! empty( $plugin_updates ) ) {
    1082                 echo '<div class="error"><p>';
    1083                 _e( 'Please select one or more plugins to update.' );
    1084                 echo '</p></div>';
     1085                wp_admin_notice(
     1086                    __( 'Please select one or more plugins to update.' ),
     1087                    array(
     1088                        'additional_classes' => array( 'error' ),
     1089                    )
     1090                );
    10851091            }
    10861092        }
Note: See TracChangeset for help on using the changeset viewer.