hooks(); } public function create() { register_post_type( 'asset', array( 'labels' => array( 'name' => __( 'Assets Manager' ), 'singular_name' => __( 'Assets Set' ) ), 'public' => true, 'menu_position' => 10, 'exclude_from_search' => true, 'show_in_menu' => true, 'supports' => array( 'title', 'editor' ), 'taxonomies' => array( 'category', 'post_tag' ) ) ); } }