Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- // El loop de testimonios
- $args = array(
- 'post_type' => 'testimonios', // Nombre de la Custom Post Type
- 'posts_per_page' => -1, // Mostrar todas las entradas
- );
- $testimonios_query = new WP_Query($args);
- if ($testimonios_query->have_posts()) {
- while ($testimonios_query->have_posts()) {
- $testimonios_query->the_post();
- ?>
- <div class="testimonial">
- <h2><?php the_title(); ?></h2>
- <div class="testimonial-content">
- <?php the_content(); ?>
- </div>
- </div>
- <?php
- }
- wp_reset_postdata(); // Restablecer los datos del bucle
- } else {
- echo "No se encontraron testimonios.";
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement