WordPress 去除后台标题中的“—— WordPress”
/** * WordPress 去除后台标题中的“—— WordPress” */ add_filter('admin_title', 'doocii_custom_admin_title', 10, 2); function doocii_custom_admin_title($admin_title, $title){ return $title.' ‹ '.get_bloginfo('name'); }
/** * WordPress 去除后台标题中的“—— WordPress” */ add_filter('admin_title', 'doocii_custom_admin_title', 10, 2); function doocii_custom_admin_title($admin_title, $title){ return $title.' ‹ '.get_bloginfo('name'); }