Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <div id="slides">
- <div class="slides_container">
- <?php if ( have_posts() ) : while ( have_posts() ) : the_post();
- $args = array(
- 'numberposts' => -1,
- 'orderby'=> 'menu_order',
- 'order' => 'ASC',
- 'post_mime_type' => 'image',
- 'post_status' => null,
- 'post_parent' => $post->ID
- );
- $attachments = get_posts( $args );
- if ( $attachments ) {
- foreach ( $attachments as $attachment ) {
- echo wp_get_attachment_image($attachment->ID , 'full' );
- }
- }
- endwhile; endif; ?>
- </div>
- </div>
- <div id="image_slider_navigation">
- <a href="#" class="slidesjs-previous slidesjs-navigation"><img src="<?php echo get_template_directory_uri(); ?>/img/arrow-prev.png" width="128px" height="128px" alt="Arrow Prev" /></a>
- <a href="#" class="slidesjs-next slidesjs-navigation"><img src="<?php echo get_template_directory_uri(); ?>/img/arrow-next.png" width="128px" height="128px" alt="Arrow Next" /></a>
- </div>
Advertisement
Add Comment
Please, Sign In to add comment