// --- Disable Comments Completely ---
add_action('admin_init', function () {
global $pagenow;
if ($pagenow === 'edit-comments.php') {
wp_redirect(admin_url());
exit;
}
remove_meta_box('dashboard_recent_comments', 'dashboard', 'normal');
foreach (get_post_types() as $post_type) {
if (post_type_supports($post_type, 'comments')) {
remove_post_type_support($post_type, 'comments');
remove_post_type_support($post_type, 'trackbacks');
}
}
});
add_filter('comments_open', '__return_false', 20, 2);
add_filter('pings_open', '__return_false', 20, 2);
add_filter('comments_array', '__return_empty_array', 10, 2);
add_action('admin_menu', function () {
remove_menu_page('edit-comments.php');
});
add_action('init', function () {
if (is_admin_bar_showing()) {
remove_action('admin_bar_menu', 'wp_admin_bar_comments_menu', 60);
}
});
// -----------------------------------
// --- Hide Comments via CSS ---
add_action('wp_head', function() {
echo '';
});
// -----------------------------
歴博のランチ:レストラン「さくら」の古代カレー | ディープ・ローカルトリップ(Deep Local Trip)
歴博のランチ:レストラン「さくら」の古代カレー
松戸市
博物館内での快適なランチタイム
歴博の館内にある「レストランさくら」は、広大な展示を見て歩き疲れた際の最高の休憩スポットです。窓からは佐倉城址公園の緑が見渡せます。
一番人気は、古代米(黒米などの古代から栽培されていたお米)を使用した「古代カレー」や「古代ハヤシライス」です。日本の洋食文化と歴史が融合したユニークな一品です。
🍛 名物「古代カレー」を味わう
カツ丼(Katsudon)やうどん(Udon)など、日本の伝統的な定食メニューも豊富に揃っています。外国人旅行者も安心して日本の定番ランチを楽しめます。
🍱 その他のおすすめメニュー
歴博は非常に広いため、午前中に半分を見て、お昼にレストランで食事をし、午後から残りの展示を見るのがおすすめです。チケットの半券(Ticket stub)を提示すれば、当日に限り再入場が可能です。
コメント