Custom Post Type
Copy Below Code
View As A Text File
Show Text Only
Show API
Edit Code
//======================CUSTOM Post Type
function create_posttype_locations() {
register_post_type( 'location',
array(
'labels' => array(
'name' => __( 'Location Pages' ),
'singular_name' => __( 'Locations Page' )
),
'public' => true,
'has_archive' => true,
'rewrite' => array('slug' => '','with_front' => false),
'taxonomies' => array('category'),
'supports' => array( 'title', 'editor', 'thumbnail' )
)
);
}
add_action( 'init', 'create_posttype_locations' );
flush_rewrite_rules();