/**
 * 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');
}

 

相关文章:

  • 2019-03-19
  • 2021-06-03
  • 2021-11-06
  • 2022-12-23
  • 2021-10-12
  • 2022-12-23
  • 2022-12-23
  • 2021-08-24
猜你喜欢
  • 2021-05-08
  • 2021-10-06
  • 2021-11-09
  • 2022-01-20
  • 2021-09-09
  • 2021-10-26
相关资源
相似解决方案