Skip to content

Instantly share code, notes, and snippets.

@brycejacobson
Created September 4, 2013 19:36
Show Gist options
  • Save brycejacobson/6441781 to your computer and use it in GitHub Desktop.
Save brycejacobson/6441781 to your computer and use it in GitHub Desktop.
Get the images attached to a post and make a Soliloquy Dynamic Slider.
<?php
//* Get images attached to post and make a slider
add_action( 'genesis_after_header', 'scw_gallery_slider', 2 );
function scw_gallery_slider() {
soliloquy_dynamic( array( 'id' => get_the_ID() ) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment