这段代码可以在管理页面,自定义一个错误信息,把他放在主题的functions.php中就可以实现该功能
1 add_action( 'admin_notices', 'custom_error_notice' );
2 function custom_error_notice(){
3 global $current_screen;
4 if ( $current_screen->parent_base == 'themes' )
5 echo '<div class="error"><p>Warning – If you modify template files this could cause problems with your website.</p></div>';
6 }
分类:新闻资讯