Register Custom Post Type
To Register Custom Post // Register Post Type Agent function wppathfinder_custom_post_type() { register_post_type('agent', array( 'labels' => array( 'name' => __('Agents', 'pathfinder'), 'singular_name' => __('Agent', 'pathfinder'), ), 'public' => true, 'has_archive' => true, 'supports' => array('title','custom-fields','thumbnail','page-attributes',), ) ); } add_action('init', 'wppathfinder_custom_post_type');