list carrera
lista de carreras
// Add Shortcode function carreras_shortcode() { echo '<ul>'; $loop = new WP_Query( array( 'post_type' => 'Carrera', 'orderby' => 'title', 'order' => 'ASC')); while ( $loop->have_posts() ) : $loop->the_post();?> <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> <?php endwhile; wp_reset_query(); echo '<ul>'; } add_shortcode( 'carreras_shortcode', 'carreras_shortcode' );