Search This Blog

Wednesday, 17 January 2018

Create custom post type wordpress

<?php
function create_post_type() {
  register_post_type( 'test_posttype',
    array(
      'labels' => array(
        'name' => __( 'Test' ),
        'singular_name' => __( 'Test' )
      ),
      'public' => true,
      'has_archive' => true,
      'rewrite' => array('slug' => 'Test'),
    )
  );
}
add_action( 'init', 'create_post_type' );

?>
Create custom post type wordpress

No comments:

Post a Comment