Skip to content

Instantly share code, notes, and snippets.

@PurpleHippoDesign
PurpleHippoDesign / single-cpt.php
Last active January 27, 2017 11:09
Generate slideshow from ACF gallery field via Soliloquy Dynamic
<?php
add_action( 'genesis_entry_content', 'pbh_do_post_content', 9 );
function pbh_do_post_content() {
echo '<div class="slider-container">';
// If at least 1 image is present in the Project Images Gallery field
if( $images = get_field('gallery') ) {