Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Organizador

// Register Custom Post Type
function custom_post_type() {

	$labels = array(
		'name'                  => _x( 'Organizadores', 'Post Type General Name', 'wp_frida' ),
		'singular_name'         => _x( 'Organizador', 'Post Type Singular Name', 'wp_frida' ),
		'menu_name'             => __( 'Organizadores', 'wp_frida' ),
		'name_admin_bar'        => __( 'Organizadores', 'wp_frida' ),
		'archives'              => __( 'Organizadores Archivo', 'wp_frida' ),
		'attributes'            => __( 'Atributos de Organizadores', 'wp_frida' ),
		'parent_item_colon'     => __( 'Parent Item:', 'wp_frida' ),
		'all_items'             => __( 'Todos los Organizadores', 'wp_frida' ),
		'add_new_item'          => __( 'Agregar Nuevo Organizadores', 'wp_frida' ),
		'add_new'               => __( 'Agregar Nuevo', 'wp_frida' ),
		'new_item'              => __( 'Nuevo Organizador', 'wp_frida' ),
		'edit_item'             => __( 'Editar Organizador', 'wp_frida' ),
		'update_item'           => __( 'Actualizar Organizador', 'wp_frida' ),
		'view_item'             => __( 'Ver Organizador', 'wp_frida' ),
		'view_items'            => __( 'Ver Organizadores', 'wp_frida' ),
		'search_items'          => __( 'Buscar Organizador', 'wp_frida' ),
		'not_found'             => __( 'No se encontraron', 'wp_frida' ),
		'not_found_in_trash'    => __( 'No se encontraron organizadores en la Papelera', 'wp_frida' ),
		'featured_image'        => __( 'Imagen Destacada', 'wp_frida' ),
		'set_featured_image'    => __( 'Asignar Imagen Destacada', 'wp_frida' ),
		'remove_featured_image' => __( 'Eliminar Imagen Destacada', 'wp_frida' ),
		'use_featured_image'    => __( 'Usar como Imagen Destacada', 'wp_frida' ),
		'insert_into_item'      => __( 'Insertar en este Organizador', 'wp_frida' ),
		'uploaded_to_this_item' => __( 'Subido a este Organizador', 'wp_frida' ),
		'items_list'            => __( 'Lista de Organizadores', 'wp_frida' ),
		'items_list_navigation' => __( 'Navegación de la Lista de Organizadores', 'wp_frida' ),
		'filter_items_list'     => __( 'Filtrar Lista de Organizadores', 'wp_frida' ),
	);
	$args = array(
		'label'                 => __( 'Organizador', 'wp_frida' ),
		'description'           => __( 'Organizador', 'wp_frida' ),
		'labels'                => $labels,
		'supports'              => array( 'title', 'editor', 'thumbnail', 'custom-fields', 'page-attributes', 'post-formats' ),
		'taxonomies'            => array( 'category', 'post_tag' ),
		'hierarchical'          => false,
		'public'                => true,
		'show_ui'               => true,
		'show_in_menu'          => true,
		'menu_position'         => 5,
		'menu_icon'             => 'dashicons-businessman',
		'show_in_admin_bar'     => true,
		'show_in_nav_menus'     => true,
		'can_export'            => true,
		'has_archive'           => true,
		'exclude_from_search'   => false,
		'publicly_queryable'    => true,
		'capability_type'       => 'post',
		'show_in_rest'          => true,
	);
	register_post_type( 'organizador', $args );

}
add_action( 'init', 'custom_post_type', 0 );