notizie
notizie sito ciai
// Register Custom Post Type function custom_post_type() { $labels = array( 'name' => 'Notizie', 'singular_name' => 'Notizia', 'menu_name' => 'Notizie', 'parent_item_colon' => 'Parent Item:', 'all_items' => 'All Items', 'view_item' => 'View Item', 'add_new_item' => 'Add New Item', 'add_new' => 'Add New', 'edit_item' => 'Edit Item', 'update_item' => 'Update Item', 'search_items' => 'Search Item', 'not_found' => 'Not found', 'not_found_in_trash' => 'Not found in Trash', ); $rewrite = array( 'slug' => '', 'with_front' => false, 'pages' => true, 'feeds' => true, ); $args = array( 'label' => 'notizie', 'description' => 'Tipo dato specializzato per notizie', 'labels' => $labels, 'supports' => array( 'title', 'editor', 'excerpt', 'author', 'thumbnail', ), 'taxonomies' => array( 'category', 'post_tag' ), 'hierarchical' => false, 'public' => true, 'show_ui' => true, 'show_in_menu' => true, 'show_in_nav_menus' => true, 'show_in_admin_bar' => true, 'menu_position' => 5, 'menu_icon' => '', 'can_export' => true, 'has_archive' => true, 'exclude_from_search' => false, 'publicly_queryable' => true, 'rewrite' => $rewrite, 'capability_type' => 'page', ); register_post_type( 'notizie', $args ); } // Hook into the 'init' action add_action( 'init', 'custom_post_type', 0 );