Wordpress カスタム投稿タイプ ② functions.php と テンプレート.phpで設定

// カスタムポストタイプ 02
function my_post_type02(){

register_post_type(
'a_shrine',
array(
'label' => '神社',
'description' => '神社の情報',
'hierarchical' => false,
'public' => true,
'has_archive' => true,
'supports' => array(
'title', # 記事タイトル
'editor', # 本文
'thumbnail', # サムネイル
'custom-fields' # カスタムフィールド
)
)
);
}
add_action('init', 'my_post_type02');