Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function custom_create_posttype() {
- register_post_type( 'codecinfo',
- array(
- 'labels' => array(
- 'name' => __( 'CodecInfo' ),
- 'singular_name' => __( 'CodecInfo' )
- ),
- 'public' => true,
- 'has_archive' => true,
- 'rewrite' => array('slug' => 'codecinfo'),
- 'show_in_rest' => true,
- )
- );
- }
- add_action( 'init', 'custom_create_posttype' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement