• Hello,
    Only some of my posts have pictures or videos. In addition to the regular posts showing on the home page, I want to have another area to show just the posts with pictures or videos (possibly as a slideshow). Can I do that? How?

Viewing 1 replies (of 1 total)
  • How about creating a custom page template that uses:

    <?php
    $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
    $args= array(
    	'post_type' => 'attachment',
    	'paged' => $paged
    );
    query_posts($args);
    ?>
Viewing 1 replies (of 1 total)

The topic ‘Showing posts with pictures’ is closed to new replies.