📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: Apache
2026-06-21 01:15:30
📂
/ (Root)
/
home
/
xeqi7597
/
public_html
/
wp-content
/
themes
/
ClrD
/
template-parts
📍 /home/xeqi7597/public_html/wp-content/themes/ClrD/template-parts
🔄 Refresh
✏️
Editing: bloc-recommandations.php
Writable
<?php $titreReco = get_field('bloc-recommandations-titre','106'); $imageBanniereReco = get_field('bloc_recommandation_banniere','106'); ?> <div class="banniere-recommandations"> <img src="<?php echo esc_url($imageBanniereReco['url']); ?>" alt="<?php echo esc_attr($imageBanniereReco['alt']); ?>"> </div> <section class="recommandations"> <div> <h2><?php the_field('bloc-recommandations-titre','106'); ?></h2> </div> <?php // Récupération des recommandations via WP_Query $args = array( 'post_type' => 'recommandation', 'posts_per_page' => -1, 'post_status' => 'publish', 'orderby' => 'rand', ); $query = new WP_Query($args); ?> <div class="swiper mySwiper"> <div class="swiper-wrapper"> <?php if ($query->have_posts()) : ?> <?php while ($query->have_posts()) : $query->the_post(); ?> <div class="swiper-slide"> <p><?php the_field('citation'); ?></p> <p class="auteur-citation"><?php the_field('auteur_citation'); ?></p> </div> <?php endwhile; wp_reset_postdata(); ?> <?php else : ?> <p><?php esc_html_e('No recommendations found.'); ?></p> <?php endif; ?> </div> <div class="swiper-pagination"></div> </div> </section>
💾 Save Changes
❌ Cancel