/home/ // IndexNow: Auto-notify Bing/Yandex when content is published add_action('save_post', function($post_id, $post, $update) { if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) return; if ($post->post_status !== 'publish') return; if (!in_array($post->post_type, array('post', 'page'))) return; $url = get_permalink($post_id); $body = wp_json_encode(array( 'host' => 'delicesduboutdumonde.com', 'key' => 'dbdm2025seoindexnow', 'urlList' => array($url) )); wp_remote_post('https://api.indexnow.org/indexnow', array( 'headers' => array('Content-Type' => 'application/json; charset=utf-8'), 'body' => $body, 'timeout' => 5, 'blocking' => false )); wp_remote_post('https://www.bing.com/indexnow', array( 'headers' => array('Content-Type' => 'application/json; charset=utf-8'), 'body' => $body, 'timeout' => 5, 'blocking' => false )); }, 10, 3);// Serve IndexNow key file add_action('init', function() { if (!isset($_SERVER['REQUEST_URI'])) return; $uri = sanitize_text_field($_SERVER['REQUEST_URI']); if (strpos($uri, 'dbdm2025seoindexnow.txt') !== false) { status_header(200); header('Content-Type: text/plain'); echo 'dbdm2025seoindexnow'; exit; } });// Add "Related Recipes" section at bottom of posts for internal linking add_filter('the_content', function($content) { if (!is_single() || get_post_type() !== 'post') return $content;$cats = wp_get_post_categories(get_the_ID(), array('fields' => 'ids')); if (empty($cats)) return $content;$related = get_posts(array( 'category__in' => $cats, 'post__not_in' => array(get_the_ID()), 'posts_per_page' => 4, 'orderby' => 'rand' ));if (empty($related)) return $content;$output = '';return $content . $output; }, 20);

What are the dining etiquette rules in Japan?

  • This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #3314
    Sophie Laurent
    Participant

    I’m going to Tokyo in a few months and honestly I’m a bit nervous about making a fool of myself at the table. I know Japan has a very specific food culture and I’d hate to accidentally offend someone. Has anyone been there and can share what they learnt firsthand? Not looking for a textbook answer, just real stuff from people who actually ate there.

    #3317
    James Crawford
    Participant

    Oh I loved Japan for this — the food culture there is unlike anywhere else I’ve been. So from my experience spending three weeks across Tokyo, Kyoto, and Osaka: the biggest thing that surprised me was that slurping your noodles is genuinely appreciated. Not just tolerated — actively seen as a sign that you’re enjoying your meal. I felt so liberated doing it after a lifetime of being told not to.

    The thing that tripped me up at first was the tipping situation. I left a few coins on the table at a ramen place and the staff came running after me to return them. It’s not just unnecessary, it can actually come across as a bit insulting, like you’re treating them as charity cases. Once you get used to it you realise service is just built into the culture there.

    For chopsticks: never stick them upright into your rice. It looks exactly like the incense sticks placed in bowls of sand at funerals and people find it deeply uncomfortable. Similarly, don’t pass food chopstick to chopstick — again, funeral associations. Just put it on someone’s plate directly.

    Before eating, the phrase is “itadakimasu” — it means something like “I humbly receive” and it’s said before every meal. And when you finish, “gochisousama deshita.” Nobody expects a foreigner to know this but if you try it, people absolutely light up. I had a whole restaurant clap for me once at a tiny place in Kyoto when I got it right.

    One more thing: if someone pours you a drink, don’t pour your own refill. You pour for others and let others pour for you. It sounds fussy but it becomes second nature after the first dinner.

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.
Scroll to Top