How to display attachment, audio, or video files?
-
I am trying to create an archive page that displays either an image, audio, or video attachment from the WP media library. Below is the $query I’ve created and added to my template, however nothing gets displayed on site frontend…
Ive tried echo, return, printf and combinations of such with no results.
How do I get the $query to display attachments that were called?<?php // The Query $query = new WP_Query( $args ); $args = array( 'post_type' => 'attachment', 'post_status' => 'inherit', 'posts_per_page' =>25, 'numberposts' => null, ); if ( $query->have_posts() ) : while ( $query->have_posts() ) : $query->the_post(); // Do Stuff echo ($query); endwhile; endif; // Reset Post Data wp_reset_postdata(); ?>
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘How to display attachment, audio, or video files?’ is closed to new replies.