8
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Wordpressで特定ページに来たら404ページを返す

Posted at
if(is_singular('do_not_show')){
    // WP_Queryの404フラグを設定
    global $wp_query;
    $wp_query->set_404();

        // HTTPステータス 404を返す
    status_header(404);

    // ブラウザ側でキャッシュさせないヘッダーを入れる
    nocache_headers();

    // 404.phpを表示
    include( get_query_template( '404' ) );
    exit();

}

どれも必須というわけではないので、ページの構成に合わせてお好みで必要な部分を入れる。
404を返したい時に必須といえるのは status_header(404) くらいか?

8
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?