Answers for "wordpress show notice only on plugin page"

PHP
0

wordpress show notice only on plugin page

function general_admin_notice(){
    global $pagenow;
    if ( $pagenow == 'options-general.php' ) {
         echo '<div class="notice notice-warning is-dismissible">
             <p>This notice appears on the settings page.</p>
         </div>';
    }
}
add_action('admin_notices', 'general_admin_notice');
Posted by: Guest on April-09-2021

Code answers related to "wordpress show notice only on plugin page"

Browse Popular Code Answers by Language