true, 'show_ui' => false, 'show_admin_column' => true, 'query_var' => true, 'show_in_nav_menus' => false, 'publicly_queryable' => ET_Builder_Post_Type_TBItem::is_publicly_queryable(), ); } /** * {@inheritDoc} */ protected function _get_labels() { return array(); } /** * Get the class instance. * * @param string $type See {@see self::$wp_type} for accepted values. Default is 'taxonomy'. * @param string $name The name/slug of the post object. Default is {@see self::$name}. * * @return ET_Builder_Post_Taxonomy_TBItemCategory|null */ public static function instance( $type = 'taxonomy', $name = 'et_tb_item_category' ) { $instance = parent::instance( $type, $name ); if ( ! $instance ) { $instance = new self(); } return $instance; } }