如果您想在CPT列表页面上显示消息,则以下是完整的代码:
function pn_current_screen_example( $current_screen ) {
if ( ( \'post\' === $current_screen->post_type || \'product\' === $current_screen->post_type ) && \'edit\' == $current_screen->base ) {
add_action( \'admin_notices\', \'pn_sample_admin_notice\' );
}
}
add_action( \'current_screen\', \'pn_current_screen_example\' );
function pn_sample_admin_notice() {
?>
<div class="notice notice-success is-dismissible">
<p><?php _e( \'This is sample admin notice!\', \'sample-text-domain\' ); ?></p>
</div>
<?php
}
?>
如果要在CPT编辑页面上显示消息,则以下是完整代码:
function pn_current_screen_example( $current_screen ) {
if ( ( \'post\' === $current_screen->post_type || \'product\' === $current_screen->post_type ) && $_GET[\'action\']=== \'edit\' ) {
add_action( \'admin_notices\', \'pn_sample_admin_notice\' );
}
}
add_action( \'current_screen\', \'pn_current_screen_example\' );
function pn_sample_admin_notice() {
?>
<div class="notice notice-success is-dismissible">
<p><?php _e( \'This is sample admin notice!\', \'sample-text-domain\' ); ?></p>
</div>
<?php
}
?>