Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

cpt_publicidad

// Register Custom Post Type
function azoe_custom_post_types() {

	$labels = array(
		'name'                => 'Publicidades',
		'singular_name'       => 'Publicidad',
		'menu_name'           => 'Publicidades',
		'parent_item_colon'   => 'Parent Publicidad:',
		'all_items'           => 'All Publicidades',
		'view_item'           => 'Ver Publicidad',
		'add_new_item'        => 'Agregar Nueva',
		'add_new'             => 'Agregar',
		'edit_item'           => 'Editar Publicidad',
		'update_item'         => 'Actualizar Publicidad',
		'search_items'        => 'Buscar Publicidades',
		'not_found'           => 'No Encontrada',
		'not_found_in_trash'  => 'No encontrada en la Papelera',
	);
	$args = array(
		'label'               => 'publicidad',
		'description'         => 'Publicidad',
		'labels'              => $labels,
		'supports'            => array( 'title', 'thumbnail', ),
		'taxonomies'          => array( 'category', 'post_tag', 'ubicaciones' ),
		'hierarchical'        => false,
		'public'              => true,
		'show_ui'             => true,
		'show_in_menu'        => true,
		'show_in_nav_menus'   => true,
		'show_in_admin_bar'   => true,
		'menu_position'       => 60,
		'menu_icon'           => '',
		'can_export'          => false,
		'has_archive'         => false,
		'exclude_from_search' => true,
		'publicly_queryable'  => false,
		'capability_type'     => 'post',
	);
	register_post_type( 'publicidad', $args );

}

// Hook into the 'init' action
add_action( 'init', 'azoe_custom_post_types', 0 );