プロジェクト用のプラグインを作成していますが、そのプラグインには「リスト」と呼ばれるカスタム分類があります。登録方法は次のとおりです。
add_action('init', function(){
register_taxonomy( 'listings', 'listings', array(
'hierarchical' => true,
'show_ui' => true,
'query_var' => true,
'labels' => array(
'name' => _x( 'Listings', 'taxonomy general name' ),
'singular_name' => _x( 'Listings', 'taxonomy singular name' ),
'search_items' => __( 'Search Listings' ),
'all_items' => __( 'All Listings' ),
'parent_item' => __( 'Parent Listings' ),
'parent_item_colon' => __( 'Parent Listings:' ),
'edit_item' => __( 'Edit Listings' ),
'update_item' => __( 'Update Listings' ),
'add_new_item' => __( 'Add New Listings' ),
'new_item_name' => __( 'New Listings Name' ),
'menu_name' => __( 'Listings Categories' ),
),
'rewrite' => array(
'slug' => 'listings',
'with_front' => true
)
));
});
URL " " にアクセスしようとするとhttp://myprojecturl/listings/some-category
、404 エラーが発生します。何が起こっていますか?私はワードプレスで本当に新しいです。