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\' );
唯一的问题是,这些通知不会出现在新帖子、编辑帖子和古腾堡执掌的类似帖子上。一定有解决办法,但我现在找不到。