Skip to content

Instantly share code, notes, and snippets.

@wp126
Created August 5, 2022 10:59
Show Gist options
  • Save wp126/1d7670c6e57293a5594770e1995d192e to your computer and use it in GitHub Desktop.
Save wp126/1d7670c6e57293a5594770e1995d192e to your computer and use it in GitHub Desktop.
create custom post type
<?php
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' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment