// 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 );