/** * company_detail URLでカテゴリ34(印刷会社詳細)以外の投稿へのアクセスを404にする * 画像やリビジョンなど、誤ったURLがインデックスされる問題を防ぐ * Added: 2026-01-22 */ function block_invalid_company_detail_urls() { if (is_admin()) return; $request_uri = $_SERVER['REQUEST_URI']; // /company_detail/ で始まるURLの場合のみ処理 if (strpos($request_uri, '/company_detail/') !== false) { // 数字のIDを抽出 if (preg_match('/\/company_detail\/(\d+)\/?/', $request_uri, $matches)) { $post_id = intval($matches[1]); // そのIDが「印刷会社詳細」カテゴリ(ID:34)に属しているか確認 if (!has_category(34, $post_id)) { // 404を返す global $wp_query; $wp_query->set_404(); status_header(404); nocache_headers(); include(get_404_template()); exit; } } } } add_action('template_redirect', 'block_invalid_company_detail_urls', 1); /** * より早い段階でcompany_detail URLの不正アクセスをブロック * parse_requestはtemplate_redirectより前に実行される * Added: 2026-01-22 */ function block_invalid_company_detail_early($wp) { if (is_admin()) return; $request_uri = $_SERVER['REQUEST_URI']; // /company_detail/数字/ のパターンをチェック if (preg_match('/\/company_detail\/(\d+)\/?/', $request_uri, $matches)) { $post_id = intval($matches[1]); // 投稿が存在し、カテゴリ34に属しているか確認 $post = get_post($post_id); if (!$post || $post->post_type !== 'post' || !has_category(34, $post_id)) { status_header(404); nocache_headers(); include(get_404_template()); exit; } } } add_action('parse_request', 'block_invalid_company_detail_early', 1); /** * 最も早い段階でcompany_detail URLの不正アクセスをブロック * initはWordPressの初期化時に実行される * Added: 2026-01-22 */ function block_invalid_company_detail_init() { if (is_admin()) return; $request_uri = $_SERVER['REQUEST_URI']; // /company_detail/数字/ のパターンをチェック if (preg_match('/\/company_detail\/(\d+)\/?/', $request_uri, $matches)) { $post_id = intval($matches[1]); // 投稿が存在し、post_typeがpostで、カテゴリ34に属しているか確認 global $wpdb; // post_typeを確認 $post_type = $wpdb->get_var($wpdb->prepare( "SELECT post_type FROM {$wpdb->posts} WHERE ID = %d", $post_id )); if ($post_type !== 'post') { status_header(404); nocache_headers(); echo '404 Not Found

404 Not Found

'; exit; } // カテゴリ34に属しているか確認 $in_category = $wpdb->get_var($wpdb->prepare( "SELECT COUNT(*) FROM {$wpdb->term_relationships} tr INNER JOIN {$wpdb->term_taxonomy} tt ON tr.term_taxonomy_id = tt.term_taxonomy_id WHERE tr.object_id = %d AND tt.term_id = 34", $post_id )); if (!$in_category) { status_header(404); nocache_headers(); echo '404 Not Found

404 Not Found

'; exit; } } } add_action('init', 'block_invalid_company_detail_init', 1); /** * company_detail URLでのcanonicalリダイレクトを無効化 * Added: 2026-01-22 */ function disable_canonical_redirect_for_company_detail($redirect_url, $requested_url) { if (strpos($requested_url, '/company_detail/') !== false) { if (preg_match('/\/company_detail\/(\d+)\/?/', $requested_url, $matches)) { $post_id = intval($matches[1]); global $wpdb; $post_type = $wpdb->get_var($wpdb->prepare( "SELECT post_type FROM {$wpdb->posts} WHERE ID = %d", $post_id )); if ($post_type !== 'post') { return false; // リダイレクトを無効化 } } } return $redirect_url; } add_filter('redirect_canonical', 'disable_canonical_redirect_for_company_detail', 1, 2); /** * attachment post typeへのredirect_canonicalを完全に無効化 * Added: 2026-01-22 */ add_filter('redirect_canonical', function($redirect_url, $requested_url) { // デバッグ用ログ error_log("redirect_canonical called: requested=$requested_url, redirect=$redirect_url"); if (strpos($requested_url, '/company_detail/') !== false) { error_log("Blocking redirect for company_detail URL"); return false; } return $redirect_url; }, 0, 2); /** * attachment post typeへのredirect_canonicalを完全に無効化 * Added: 2026-01-22 */ add_filter('redirect_canonical', function($redirect_url, $requested_url) { // デバッグ用ログ error_log("redirect_canonical called: requested=$requested_url, redirect=$redirect_url"); if (strpos($requested_url, '/company_detail/') !== false) { error_log("Blocking redirect for company_detail URL"); return false; } return $redirect_url; }, 0, 2); 【ベストプリント】6周年記念キャンペーン | 印刷通販徹底比較

【ベストプリント】6周年記念キャンペーン

このキャンペーンは終了しています

現在開催中のキャンペーンをみる

概要

印刷通販のベストプリントはおかげさまで開業6周年を迎えることとなりました。
日頃のご愛顧に感謝して、大好評のプレゼントキャンペーンを開催いたします。

キャンペーン期間中にご注文いただいたお客様の中から、1ヶ月のご注文金額に応じて
抽選で素敵な賞品をプレゼントいたします。
またW賞は、ご注文金額に関わらずキャンペーン期間中にご注文いただいたお客様全員が対象です!

賞品

1等・・・近畿日本ツーリスト ツーリスト旅行券5万円分 2名様
2等・・・Dyson V6 Trigger または Bポイント40,000ポイント 2名様
3等・・・日本の銘米10ブランドセット または Bポイント10,000ポイント 10名様
W賞・・・Bポイント600ポイント 600名様

対象者

2月・3月のそれぞれの月のご注文総額に応じて対象の賞品がことなります。
1等・・・2月または3月のどちらかに総額20万円以上をご注文のお客様
2等・・・2月または3月のどちらかに総額10万円以上をご注文のお客様
3等・・・2月または3月のどちらかに総額5万円以上をご注文のお客様
W賞・・・2月または3月のどちらかにご注文いただいたお客様

併せてご覧ください

ベストプリントの会社情報・口コミ・評判はこちら

現在開催中のキャンペーンをみる

おすすめ記事

体験レビュー・印刷通販コラム 新着記事