BBP Destinations
Destinations Custom Post Type for BBP Website
// Register Custom Post Type function destinations_custom_post_type() { $labels = array( 'name' => 'Destinations', 'singular_name' => 'Destination', 'menu_name' => 'Destinations', 'parent_item_colon' => 'Parent Item:', 'all_items' => 'All Destinations', 'view_item' => 'View Destination', 'add_new_item' => 'Add New Destination', 'add_new' => 'Add New Destination', 'edit_item' => 'Edit Destination', 'update_item' => 'Update Destination', 'search_items' => 'Search Destinations', 'not_found' => 'Destination Not Found', 'not_found_in_trash' => 'Destination not found in Trash', ); $rewrite = array( 'slug' => 'visit/destination/', 'with_front' => true, 'pages' => true, 'feeds' => true, ); $args = array( 'label' => 'destination', 'description' => 'Major Destinations along Buffalo Bayou', 'labels' => $labels, 'supports' => array( 'title', 'editor', 'excerpt', 'thumbnail', 'revisions', 'custom-fields', ), 'taxonomies' => array( 'category', 'post_tag' ), 'hierarchical' => true, 'public' => true, 'show_ui' => true, 'show_in_menu' => true, 'show_in_nav_menus' => true, 'show_in_admin_bar' => true, 'menu_position' => 20, 'menu_icon' => '', 'can_export' => true, 'has_archive' => false, 'exclude_from_search' => false, 'publicly_queryable' => true, 'rewrite' => $rewrite, 'capability_type' => 'page', ); register_post_type( 'destination', $args ); } // Hook into the 'init' action add_action( 'init', 'destinations_custom_post_type', 0 );