メニュー

東京・小金井市のWEB制作会社の豆知識

MEMORANDUM

WordPress(ワードプレス)で特定のページを検索エンジンに表示されなくする(noindex、nofollow)

WordPress(ワードプレス)を使用して作成したホームページを運用している際に、特定のページのみ検索エンジンに登録されないようにとの依頼を受け、「noindex」「nofollow」を設置した方法をメモ。

functions.php(PHP)

function my_wp_robots($robots_meta) {

	if(!is_array($robots_meta)){
		$robots_meta = array();
	}

	if(is_single(array('1', '2069', '1178')) || is_page(array('5', '174'))) {
		$robots_meta['noindex'] = true;
		$robots_meta['nofollow'] = true;
	}

	if(is_tax('タクソノミー名', array('スラグ名', 'スラグ名', 'スラグ名', 'スラグ名'))) {
		$robots_meta['noindex'] = true;
		$robots_meta['nofollow'] = true;
	}

	return $robots_meta;
	
}
add_filter('wp_robots', my_wp_robots);
RANKING

人気記事

同一カテゴリーの記事