habibjutt
12/24/2015 - 7:05 PM

WP creating a basic custom post type.php

<?php
function my_custom_posttypes() {
    $args = array(
      'public' => true,
      'label'  => 'Testimonials'
    );
    register_post_type( 'testimonial', $args );
}
add_action( 'init', 'my_custom_posttypes' );
?>