Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $args = array(
- 'post_type' => 'testimonios', // Nombre de la Custom Post Type
- 'posts_per_page' => 6, // Mostrar todos los post
- 'order' => 'DESC', // Ordenar del más reciente a más antiguo
- );
- $testimonios_query = new WP_Query($args);
- if ($testimonios_query->have_posts()) {
- ?>
- <div class="swiper ov-swiper-testimonios">
- <div class="swiper-wrapper">
- <?php while ($testimonios_query->have_posts()) : $testimonios_query->the_post(); ?>
- <div class="swiper-slide">
- <!-- Diseño card testimonio -->
- <div class="ov-card-testimonio">
- <div class="avatar">
- <img src="<?php the_field('imagen_de_perfil'); ?>" />
- </div>
- <div class="estrellas">
- <img src="https://ovdemos.com/wp-content/uploads/2023/08/5-estrellas.svg" />
- </div>
- <div class="descripcion">
- <p><?php the_field('descripcion'); ?></p>
- </div>
- <div class="nombre">
- <h3><?php the_field('nombre'); ?></h3>
- <p class="empresa"><?php the_field('empresa'); ?></p>
- </div>
- </div>
- <!-- Fin diseño card testimonio -->
- </div>
- <?php endwhile; ?>
- </div>
- <!-- Agregar botones de navegación si lo deseas -->
- <div class="swiper-button-next"></div>
- <div class="swiper-button-prev"></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