Skip to content

Instantly share code, notes, and snippets.

@alimoshen
alimoshen / custom-post-type.php
Last active January 29, 2018 10:18
WordPress taxonomy trail in slug
// Post type 'expertise'
add_action( 'init', 'create_expertise_post_type', 4 );
function create_expertise_post_type()
{
$labels = array(
'name' => __( 'Expertise' ),
'singular_name' => __( 'Expertise' ),
'add_new' => __( 'Add New' ),
'add_new_item' => __( 'Create New' ),