Display Post image on Custom Page Template with Pagination
-
I have this code for my page template.
This is what i have right now: https://www.ohright.com/emoticons/
How do I change it so that it can display all my post images at 20 images per-page and with a pagination below? Please help. This is driving me crazy. Thank you so much!!!!
<?php /* Template Name: emoticons-page */ get_header(); ?> <div id="content"> <div id="main"> <?php query_posts('cat=44'.get_the_title().'&post_status=publish,future');?> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1> <p><?php the_content(); ?> <?php endwhile; else: endif; ?> </div> </div> <?php get_footer(); ?>
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
- The topic ‘Display Post image on Custom Page Template with Pagination’ is closed to new replies.