// Our custom post type function
function
create_posttype() {
register_post_type(
'movies'
,
// CPT Options
array
(
'labels'
=>
array
(
'name'
=> __(
'Movies'
),
'singular_name'
=> __(
'Movie'
)
),
'public'
=> true,
'has_archive'
=> true,
'rewrite'
=>
array
(
'slug'
=>
'movies'
),
'show_in_rest'
=> true,
)
);
}
// Hooking up our function to theme setup
add_action(
'init'
,
'create_posttype'
);
No comments:
Post a Comment