2026年に亡くなった日本の有名人・芸能人・著名人を一覧にまとめました
雑記
[PR]、記事内リンクはAmazonで商品検索を行います。
この記事では2026年に亡くなった日本の有名人を一覧にまとめました。
2026年に亡くなった日本の有名人
※敬称略
※職業、役職については「元」「前」の表記を省略しています。
[PR]、記事内リンクはAmazonで商品検索を行います。
| 没日 | 氏名 | 職業 | 享年 | 死因 | 主な実績、作品など |
| 1月1日 | 久米宏 (くめ・ひろし) | フリーアナウンサー | 81 | 肺がん | TBS「ザ・ベストテン」 テレビ朝日「ニュースステーション」 『ミステリアスな結婚』 |
| 1月5日 | 藤乃あおい (ふじの・あおい) | グラビアアイドル | 27 | 副咽頭間隙腫瘍 | |
| 1月6日 | 大谷實 (おおや・みのる) | 学者 | 91 | 心不全 | 同志社大名誉教授 |
| 1月8日 | 中村宏 (なかむら・ひろし) | 画家 | 93 | 膵臓がん | |
タイトルとURLをコピーしました
[
'amazon' => ['label' => 'Amazon', 'color' => '#232f3e', 'base_url' => 'https://www.amazon.co.jp/s?k='],
'rakuten' => ['label' => '楽天市場', 'color' => '#bf0000', 'base_url' => 'https://search.rakuten.co.jp/search/mall/'],
'yahoo' => ['label' => 'Yahoo!', 'color' => '#ff0033', 'base_url' => 'https://shopping.yahoo.co.jp/search?p='],
'seven' => ['label' => 'セブンネット', 'color' => '#18943c', 'base_url' => 'https://7net.omni7.jp/search/?keyword='],
],
'ebook' => [
'kindle' => ['label' => 'Kindle', 'color' => '#ff9900', 'base_url' => 'https://www.amazon.co.jp/s?k='],
'kobo' => ['label' => '楽天Kobo', 'color' => '#cc0066', 'base_url' => 'https://search.rakuten.co.jp/search/mall/'],
'bookwalker' => ['label' => 'BookWalker', 'color' => '#0054a6', 'base_url' => 'https://bookwalker.jp/search/?word='],
'renta' => ['label' => 'Renta!', 'color' => '#e8bd16', 'base_url' => 'https://renta.papy.co.jp/renta/sc/frm/search?word='],
'booklive' => ['label' => 'BookLive', 'color' => '#ff6600', 'base_url' => 'https://booklive.jp/search/keyword?keyword='],
'ebookjapan' => ['label' => 'eBookJapan', 'color' => '#e60012', 'base_url' => 'https://ebookjapan.yahoo.co.jp/search/?keyword='],
'cmoa' => ['label' => 'コミックシーモア', 'color' => '#ff911b', 'base_url' => 'https://www.cmoa.jp/search/result/?word='],
]
];
}
// --- 2. 管理画面の設定ページ作成 ---
add_action( 'admin_menu', 'mal_add_admin_menu' );
function mal_add_admin_menu() {
add_options_page( 'アフィリエイトID設定', 'アフィリエイトID設定', 'manage_options', 'mal_settings', 'mal_settings_page' );
}
function mal_settings_page() {
?>
に出力する機能 ---
add_action( 'wp_head', 'mal_output_linkswitch_tag', 1 );
function mal_output_linkswitch_tag() {
$tag = get_option('mal_linkswitch_tag');
if ( ! empty( $tag ) ) {
echo "\n\n";
echo $tag; // ここで設定画面のタグが出力されます
echo "\n\n";
}
}
// --- 4. ショートコード [shop_links id="商品ID"] ---
add_action( 'wp_head', 'mal_custom_css' ); // CSSの出力
function mal_custom_css() {
?>
'' ), $atts );
if ( empty( $atts['id'] ) ) return '';
$item_id = $atts['id'];
$services = mal_get_services();
$amz_id = get_option('mal_id_amazon');
$rak_id = get_option('mal_id_rakuten');
$output = '
';
foreach ( $services as $group_key => $group_data ) {
$label = ($group_key === 'physical') ? '【紙の本・総合通販】' : '【電子書籍】';
$output .= '
'.$label.'
';
foreach ( $group_data as $key => $data ) {
$url = $data['base_url'] . urlencode($item_id);
// Amazon/楽天だけは個別IDを付与(LinkSwitch対象外のため)
if (($key === 'amazon' || $key === 'kindle') && $amz_id) $url .= "&tag=" . $amz_id;
if (($key === 'rakuten' || $key === 'kobo') && $rak_id) $url = "https://hb.afl.rakuten.co.jp/hgc/{$rak_id}/?pc=" . urlencode($url);
$output .= sprintf(
'
%s',
esc_url($url), $data['color'], $data['label']
);
}
$output .= '
';
}
$output .= '
';
return $output;
}