Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save davidzack/6d832a059b6ce1918a220e48972ac60c to your computer and use it in GitHub Desktop.
Save davidzack/6d832a059b6ce1918a220e48972ac60c to your computer and use it in GitHub Desktop.
sponsors tax and cpt
<?php
if ( ! function_exists('cpt_sponsor') ) {
// Register Custom Post Type for SPONSORS
function cpt_sponsor() {
$labels = array(
'name' => _x( 'Sponsors', 'Post Type General Name', 'text_domain' ),
'singular_name' => _x( 'Sponsor', 'Post Type Singular Name', 'text_domain' ),
'menu_name' => __( 'Sponsors', 'text_domain' ),
'name_admin_bar' => __( 'Sponsor', 'text_domain' ),
'archives' => __( 'Sponsor Archives', 'text_domain' ),
'parent_item_colon' => __( 'Parent Sponsor:', 'text_domain' ),
'all_items' => __( 'All Sponsors', 'text_domain' ),
'add_new_item' => __( 'Add New Sponsor', 'text_domain' ),
'add_new' => __( 'Add New Sponsor', 'text_domain' ),
'new_item' => __( 'New Sponsor', 'text_domain' ),
'edit_item' => __( 'Edit Sponsor', 'text_domain' ),
'update_item' => __( 'Update Sponsor', 'text_domain' ),
'view_item' => __( 'View Sponsor', 'text_domain' ),
'search_items' => __( 'Search Sponsor', 'text_domain' ),
'not_found' => __( 'Not found', 'text_domain' ),
'not_found_in_trash' => __( 'Not found in Trash', 'text_domain' ),
'featured_image' => __( 'Featured Image', 'text_domain' ),
'set_featured_image' => __( 'Set featured image', 'text_domain' ),
'remove_featured_image' => __( 'Remove featured image', 'text_domain' ),
'use_featured_image' => __( 'Use as featured image', 'text_domain' ),
'insert_into_item' => __( 'Insert into item', 'text_domain' ),
'uploaded_to_this_item' => __( 'Uploaded to this item', 'text_domain' ),
'items_list' => __( 'Sponsors list', 'text_domain' ),
'items_list_navigation' => __( 'Sponsors list navigation', 'text_domain' ),
'filter_items_list' => __( 'Filter items list', 'text_domain' ),
);
$args = array(
'label' => __( 'Sponsor', 'text_domain' ),
'description' => __( 'Custom Post for Sponsors', 'text_domain' ),
'labels' => $labels,
'supports' => array( 'title', 'editor', 'thumbnail', 'revisions', ),
'hierarchical' => false,
'public' => true,
'show_ui' => true,
'show_in_menu' => true,
'menu_position' => 5,
'menu_icon' => 'dashicons-groups',
'show_in_admin_bar' => true,
'show_in_nav_menus' => true,
'can_export' => true,
'has_archive' => false,
'exclude_from_search' => false,
'publicly_queryable' => true,
'taxonomies' => array( 'sponsor_categories'),
'capability_type' => 'post',
);
register_post_type( 'sponsor', $args );
}
add_action( 'init', 'cpt_sponsor', 0 );
}
if ( ! function_exists( 'sponsor_categories' ) ) {
// Register Custom Taxonomy for Sponsor Categories
function sponsor_categories() {
$labels = array(
'name' => _x( 'Sponsor Categories', 'Taxonomy General Name', 'text_domain' ),
'singular_name' => _x( 'Sponsor Category', 'Taxonomy Singular Name', 'text_domain' ),
'menu_name' => __( 'Sponsor Category', 'text_domain' ),
'all_items' => __( 'All Items', 'text_domain' ),
'parent_item' => __( 'Parent Item', 'text_domain' ),
'parent_item_colon' => __( 'Parent Item:', 'text_domain' ),
'new_item_name' => __( 'New Item Name', 'text_domain' ),
'add_new_item' => __( 'Add New Item', 'text_domain' ),
'edit_item' => __( 'Edit Item', 'text_domain' ),
'update_item' => __( 'Update Item', 'text_domain' ),
'view_item' => __( 'View Item', 'text_domain' ),
'separate_items_with_commas' => __( 'Separate items with commas', 'text_domain' ),
'add_or_remove_items' => __( 'Add or remove items', 'text_domain' ),
'choose_from_most_used' => __( 'Choose from the most used', 'text_domain' ),
'popular_items' => __( 'Popular Items', 'text_domain' ),
'search_items' => __( 'Search Items', 'text_domain' ),
'not_found' => __( 'Not Found', 'text_domain' ),
'no_terms' => __( 'No items', 'text_domain' ),
'items_list' => __( 'Items list', 'text_domain' ),
'items_list_navigation' => __( 'Items list navigation', 'text_domain' ),
);
$args = array(
'labels' => $labels,
'hierarchical' => true,
'public' => true,
'show_ui' => true,
'query_var' => true,
'show_admin_column' => true,
'show_in_nav_menus' => false,
'show_tagcloud' => false,
);
register_taxonomy( 'Sponsor Categories', array( 'sponsor' ), $args );
}
add_action( 'init', 'sponsor_categories', 0 );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment