Skip to content

Instantly share code, notes, and snippets.

@haipham
Forked from FernE97/acf-slider.php
Created December 20, 2023 03:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save haipham/b6f2e0d853c32db49b254ee487753069 to your computer and use it in GitHub Desktop.
Save haipham/b6f2e0d853c32db49b254ee487753069 to your computer and use it in GitHub Desktop.
PHP: WordPress - Advanced Custom Fields Slider
<?php if ( get_field( 'slides' ) ) : // repeater field ?>
<ul class="slider">
<?php while ( the_repeater_field( 'slides' ) ) :
$image = get_sub_field( 'slide' ); // sub-field image ID
$slide = wp_get_attachment_image_src( $image, 'slides' );
$alt = get_post_meta( $image, '_wp_attachment_image_alt', true );
?>
<li><img src="<?php echo $slide[0]; ?>" alt="<?php echo $alt; ?>"></li>
<?php endwhile; ?>
</ul>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment