I created a custom post type with a taxonomy defined, but I am having trouble getting an archive page to show up.
- I get a 404 page not found. The individual post shows up but nothing on archives page.
functions php.
function create_post_type() {
register_post_type( 'my_properties',
array(
'labels' => array(
'name' => __( 'Commercial Properties' ),
'singular_name' => __( 'My Property' )
),
'public' => true,
'menu_position' => 5,
'rewrite' => array('slug' => 'Myproperties')
)
);
}
add_action( 'init', 'create_post_type' );
function property_taxonomy() {
register_taxonomy(
'properties',
'my_properties',
array(
'hierarchical' => true,
'label' => 'Category',
'query_var' => true,
)
);
}
add_action( 'init', 'property_taxonomy' );
I have tried:
⢠Creating an archive-my_properties.php (should the page be named after the registration or the slug?
⢠Resaved permalinks
⢠Flushed Rewrite rules
You need to declare
'has_archive' => true
in the arguments array you pass toregister_post_type()
. The default value isfalse
, which means that WordPress does not generate an archive index for the post type.