こんにちは、今日はWordPressでカスタム投稿タイプを追加する方法についてまとめていきます。
確認環境
WordPress 5.5.1
カスタム投稿タイプの追加
カスタム投稿タイプを追加するには、register_post_type関数を使用します。
https://developer.wordpress.org/reference/functions/register_post_type/
第一引数には文字列でカスタム投稿タイプの名前を指定します。
第二引数にはその投稿タイプのオプションを配列か文字列で指定します。
第二引数はデフォルト値で問題なければ指定は必要ありません。
また、この関数の呼び出しはinitアクションの中から呼び出す必要があります。
function add_my_custom_post_type() {
$labels = array(
'name' => 'カスタム',
'singular_name' => 'カスタム',
'menu_name' => 'カスタム',
'name_admin_bar' => 'カスタム',
'add_new' => 'カスタム',
'add_new_item' => 'カスタム',
'new_item' => 'カスタム',
'edit_item' => 'カスタム',
'view_item' => 'カスタム',
'all_items' => 'カスタム',
'search_items' => 'カスタム',
'parent_item_colon' => 'カスタム',
'not_found' => 'カスタム',
'not_found_in_trash' => 'カスタム',
'featured_image' => 'カスタム',
'set_featured_image' => 'カスタム',
'remove_featured_image' => 'カスタム',
'use_featured_image' => 'カスタム',
'archives' => 'カスタム',
'insert_into_item' => 'カスタム',
'uploaded_to_this_item' => 'カスタム',
'filter_items_list' => 'カスタム',
'items_list_navigation' => 'カスタム',
'items_list' => 'カスタム',
);
$args = array(
'labels' => $labels,
'public' => true,
'publicly_queryable' => true,
'show_ui' => true,
'show_in_menu' => true,
'query_var' => true,
'rewrite' => array( 'slug' => 'custom' ),
'capability_type' => 'post',
'has_archive' => true,
'hierarchical' => false,
'menu_position' => null,
'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'comments' ),
);
register_post_type( 'custom', $args );
}
add_action( 'init', 'add_my_custom_post_type' );