最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

hooks - Display $pagenow error notice on all admin pages

matteradmin6PV0评论

I need to show my client error message on all admin pages.

I have the following code, that adds a custom notice only on the admin dashboard page:

add_action('admin_bar_menu', 'custom_toolbar_link2', 999);

function general_admin_notice(){
    global $pagenow;
    if ( $pagenow == 'index.php' ) {
         echo '<div class="notice notice-error">
             <h3>My custom text</h3>
         </div>';
    }
}

Is there any way to display this notice on all admin pages?

I need to show my client error message on all admin pages.

I have the following code, that adds a custom notice only on the admin dashboard page:

add_action('admin_bar_menu', 'custom_toolbar_link2', 999);

function general_admin_notice(){
    global $pagenow;
    if ( $pagenow == 'index.php' ) {
         echo '<div class="notice notice-error">
             <h3>My custom text</h3>
         </div>';
    }
}

Is there any way to display this notice on all admin pages?

Share Improve this question edited Mar 22, 2019 at 14:32 cjbj 15k16 gold badges42 silver badges89 bronze badges asked Mar 22, 2019 at 14:17 JurajJuraj 1542 silver badges11 bronze badges
Add a comment  | 

2 Answers 2

Reset to default 1
function my_admin_notice() {

    /*
     * The class of admin notice should be "notice" plus any one of
     * -"notice-error",
     * -"notice-warning",
     * -"notice-success"
     * -"notice-info".
     * Optionally use "is-dismissible" to apply a closing icon.
     */

    echo '<div class="notice notice-info"><p>Custom notice text</p></div>';

}

add_action( 'admin_notices', 'my_admin_notice' );

The only thing is, these notices does not show up on New Post, Edit Post and similar where Gutenberg reins. There must be the solution, but I can't find it right now.

Sure there is a method to do this. You just need to attach your function to a different hook, admin_notices. You can even add classes that will turn into coloured bars, telling the user how important the message is.

Post a comment

comment list (0)

  1. No comments so far