客户通过搜索引擎site:关键词搜索到,https://www.xxxxxx.cn/author/admin,这个页面,这个页面没去做样式修改,所以出来的界面就奇奇怪怪。在\wp-content\themes\xxxxx主题\functions.php添加以下代码,再打开就变成404了。
add_action('template_redirect', 'my_custom_disable_author_page'); function my_custom_disable_author_page() { global $wp_query; if ( is_author() ) { $wp_query->set_404(); status_header(404); } }
评论前必须登录!
注册