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