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
- 'order' => 'ASC', // Nombre del más antiguo al más reciente
- 'posts_per_page' => 6, // Número de post por página
- 'paged' => get_query_var('paged') ? get_query_var('paged') : 1 // Página actual
- );
- $testimonios_query = new WP_Query($args);
- if ($testimonios_query->have_posts()) { ?>
- <div class="ov-testimonios-grid">
- <?php while ($testimonios_query->have_posts()) : $testimonios_query->the_post(); ?>
- <!-- 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 -->
- <?php endwhile; ?>
- </div>
- <div class="pagination">
- <?php
- echo paginate_links(array(
- 'total' => $testimonios_query->max_num_pages,
- 'current' => max(1, get_query_var('paged')),
- ));
- ?>
- </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