Plugin_proyecto
if ( ! function_exists('fx_proyectos_post_type') ) {
// Register Custom Post Type
function fx_proyectos_post_type() {
$labels = array(
'name' => _x( 'Proyectos', 'Post Type General Name', 'fx' ),
'singular_name' => _x( 'Proyecto', 'Post Type Singular Name', 'fx' ),
'menu_name' => __( 'Proyectos', 'fx' ),
'name_admin_bar' => __( 'Post Type', 'fx' ),
'parent_item_colon' => __( 'Proyecto superior:', 'fx' ),
'all_items' => __( 'Todos los proyectos', 'fx' ),
'add_new_item' => __( 'Agregar nuevo proyecto', 'fx' ),
'add_new' => __( 'Agregar nuevo ', 'fx' ),
'new_item' => __( 'New Item', 'fx' ),
'edit_item' => __( 'Editar proyecto', 'fx' ),
'update_item' => __( 'Actualizar proyecto', 'fx' ),
'view_item' => __( 'Ver proyecto', 'fx' ),
'search_items' => __( 'Buscar proyecto', 'fx' ),
'not_found' => __( 'No se han encontrado resultados', 'fx' ),
'not_found_in_trash' => __( 'No hay nada en la papelera', 'fx' ),
);
$args = array(
'label' => __( 'proyectos', 'fx' ),
'description' => __( 'Lista de proyectos', 'fx' ),
'labels' => $labels,
'supports' => array( 'title', 'editor', 'thumbnail', 'revisions', ),
'hierarchical' => false,
'public' => true,
'show_ui' => true,
'show_in_menu' => true,
'menu_position' => 20,
'menu_icon' => 'dashicons-portfolio',
'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' => 'page',
);
register_post_type( 'proyectos', $args );
}
// Hook into the 'init' action
add_action( 'init', 'fx_proyectos_post_type', 0 );
}