Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $paged = get_query_var('paged') ? get_query_var('paged') : 1;
- $args = array(
- 'post_type' => array( 'post', 'hotels', 'flights', 'touristdestinations' ),
- 'posts_per_page' => 5,
- 'orderby' => 'date',
- 'paged' => $paged,
- 'max_num_pages' => 10
- );
- ?>
- <?php $wp_query = new WP_Query($args); ?>
- <?php if ( $wp_query->have_posts() ) : ?>
- <?php while( $wp_query->have_posts() ) : $wp_query->the_post(); ?>
- <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
- <?php the_post_thumbnail(); ?>
- <?php the_excerpt(); ?>
- <p>Posted: <?php the_time('F j, Y'); ?> at <?php the_time('g:i a'); ?></p>
- <?php endwhile; ?>
- <?php next_posts_link(); ?>
- <?php previous_posts_link(); ?>
- <?php else: ?>
- <p><?php _e('Sorry, there are no posts.'); ?></p>
- <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement