Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Curazao Sure Lottery Publicidad

if ( ! function_exists('cpt_empresas_publicidad') ) {

// Register Custom Post Type
function cpt_empresas_publicidad() {

	$labels = array(
		'name'                  => 'Empresas',
		'singular_name'         => 'Empresa',
		'menu_name'             => 'PROPAGANDA',
		'name_admin_bar'        => 'PROPAGANDA',
		'archives'              => 'Empresas Archives',
		'attributes'            => 'Empresas Attributes',
		'parent_item_colon'     => 'Artículo principal:',
		'all_items'             => 'Todas las Empresas',
		'add_new_item'          => 'Agregar Nueva Empresa',
		'add_new'               => 'Agregar nuevo',
		'new_item'              => 'Nuevo Empresa',
		'edit_item'             => 'Editar Empresa',
		'update_item'           => 'Actualizar Empresa',
		'view_item'             => 'Ver Empresa',
		'view_items'            => 'Ver Empresas',
		'search_items'          => 'Buscar Empresa',
		'not_found'             => 'Empresa No Encontrada',
		'not_found_in_trash'    => 'No encontrado en la Papelera',
		'featured_image'        => 'Foto principal',
		'set_featured_image'    => 'Establecer imagen destacada',
		'remove_featured_image' => 'Eliminar imagen destacada',
		'use_featured_image'    => 'Usar como imagen destacada',
		'insert_into_item'      => 'Insertar en el artículo',
		'uploaded_to_this_item' => 'Subido a este artículo',
		'items_list'            => 'Lista de artículos',
		'items_list_navigation' => 'Navegación por la lista de artículos',
		'filter_items_list'     => 'Lista de elementos de filtro',
	);
	$rewrite = array(
		'slug'                  => 'publicidad',
		'with_front'            => true,
		'pages'                 => true,
		'feeds'                 => true,
	);
	$args = array(
		'label'                 => 'Empresa',
		'description'           => 'Empresas que pautan con Curacao Sure Lottery',
		'labels'                => $labels,
		'supports'              => array( 'title', 'editor', 'thumbnail', 'trackbacks', 'revisions', 'custom-fields' ),
		'hierarchical'          => false,
		'public'                => true,
		'show_ui'               => true,
		'show_in_menu'          => true,
		'menu_position'         => 5,
		'menu_icon'             => 'dashicons-megaphone',
		'show_in_admin_bar'     => true,
		'show_in_nav_menus'     => true,
		'can_export'            => true,
		'has_archive'           => true,
		'exclude_from_search'   => false,
		'publicly_queryable'    => true,
		'rewrite'               => $rewrite,
		'capability_type'       => 'post',
		'show_in_rest'          => true,
	);
	register_post_type( 'empresas_publicidad', $args );

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

}