tabbymargot
5/1/2020 - 10:46 AM

SuperHi Custom Post Registration

// Register Custom Post Type
function add_locations() {

	$labels = array(
		'name'                  => _x( 'Locations', 'Post Type General Name', 'text_domain' ),
		'singular_name'         => _x( 'Location', 'Post Type Singular Name', 'text_domain' ),	
	);
	$args = array(
		'labels'                => $labels,
		'taxonomies'            => array( 'category' ),
		'public'                => true,
	);
	register_post_type( 'locations', $args );

}
add_action( 'init', 'add_locations', 0 );