概要
シードケイク(seedcake; seed cake)とは、キャラウェイシードを混ぜ込んで焼かれる英国の伝統的なケイクです。強い甘味よりも、香りと落ち着いた風味に特徴があります。
特にヴィクトリア朝に広く親しまれ、家庭で繰り返し焼かれてきました。
紅茶文化における位置
シードケイクは華やかな菓子ではありません。
しかし重要なのはその役割です。シードケイクは保存がきくため、
「誰かが来たときのために用意しておく」
「切り分けてすぐ出せる」
という家庭的合理性を備えていました。日常と来客の境界に置かれた菓子であり、紅茶文化の「構えすぎない歓待」を象徴します。
文化的補足
キャラウェイは古くから消化を助ける種子として知られていました。
重たい食事の後に供されることもあり、食後の紅茶との相性が良い菓子とされてきました。
中世以降、20世紀初頭まではイングランドで最も好まれたケイクの一つでしたが、現代では必づしも好まれていません。
🔗リンク
ティーローフ
/* 1) 関連用語(辞典用のパーツ名に合わせて) */
get_template_part('parts/related-dictionary', null, ['post_id' => get_the_ID()]); /* 2) 「辞典カテゴリ」:公開&階層のタクソノミーを1種類だけ出す
- post_tag / category / post_format / dictionary_tag は除外 */
$dict_cat_tax = null;
$tx_objs = get_object_taxonomies( get_post_type(), 'objects' );
if ( $tx_objs ) {
foreach ( $tx_objs as $tx ) {
if ( ! $tx->public || ! $tx->hierarchical ) continue;
if ( in_array($tx->name, ['post_tag','category','post_format','dictionary_tag'], true) ) continue;
if ( stripos($tx->name,'dictionary') !== false
|| stripos($tx->labels->name,'辞典') !== false
|| stripos($tx->labels->name,'Tea Term') !== false ) {
$dict_cat_tax = $tx->name; break;
}
}
}
if ( $dict_cat_tax ) {
$terms = get_the_terms( get_the_ID(), $dict_cat_tax );
if ( $terms && ! is_wp_error($terms) ) {
echo '';
}
} /* 3) 「辞書タグ」:dictionary_tag をピルで出す(無ければ何も出さない) */
$tags = get_the_terms( get_the_ID(), 'dictionary_tag' );
if ( $tags && ! is_wp_error($tags) ) {
echo '';
} /* 4) 前/次ナビ(安全版の parts/adjacent.php を使っていればそのままでOK) */
get_template_part('parts/adjacent', null, [
'post_id' => get_the_ID(),
'post_type' => get_post_type()
]);
?>