Created
September 4, 2013 19:36
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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