Make WordPress Core


Ignore:
Timestamp:
09/14/2023 01:11:29 AM (14 months ago)
Author:
joedolson
Message:

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

Add usages of wp_admin_notice() and wp_get_admin_notice() on .notice-[type] in the root level of /wp-admin/includes. Ongoing task to implement new function across core.

Props costdev, joedolson.
See #57791.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-posts-list-table.php

    r56549 r56571  
    20772077                <?php endif; ?>
    20782078
    2079                 <div class="notice notice-error notice-alt inline hidden">
    2080                     <p class="error"></p>
    2081                 </div>
     2079                <?php
     2080                wp_admin_notice(
     2081                    '<p class="error"></p>',
     2082                    array(
     2083                        'type'               => 'error',
     2084                        'additional_classes' => array( 'notice-alt', 'inline', 'hidden' ),
     2085                        'paragraph_wrap'     => false,
     2086                    )
     2087                );
     2088                ?>
    20822089            </div>
    20832090        </div> <!-- end of .inline-edit-wrapper -->
Note: See TracChangeset for help on using the changeset viewer.