Create a custom post type
Add this snippet to the functions.php file to add a custom post type in WordPress. This example is for movie reviews.
function create_movie_review_post_type() {
register_post_type('movie_review',
array(
'labels' => array(
'name' => __('Movie Reviews'),
'singular_name' => __('Movie Review')
),
'public' => true,
'has_archive' => true,
'supports' => array('title', 'editor', 'thumbnail'),
'menu_icon' => 'dashicons-video-alt2'
)
);
}
add_action('init', 'create_movie_review_post_type');