去评论
dz插件网

wordpress 禁止PC首页访问 不影响蜘蛛抓取的方法

镖师
2023/03/15 13:22:29
  1. function block_homepage_for_pc() {    if ( ! is_admin() && ! is_feed() ) {        $user_agent = $_SERVER['HTTP_USER_AGENT'];        if ( strpos( $user_agent, 'Googlebot' ) === false && strpos( $user_agent, 'Bingbot' ) === false && strpos( $user_agent, 'Slurp' ) === false && strpos( $user_agent, 'DuckDuckBot' ) === false ) {            global $wp_query;            $wp_query->set_404();            status_header( 404 );            get_template_part( 404 );            exit();        }    }}add_action( 'template_redirect', 'block_homepage_for_pc' );
放到主题配置文件里