Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // show post and page without any custom type (mainly show this for 404.php)
- <div class="four-zero-page-area">
- <div class="row">
- <div class="col-md-6">
- <div class="recent-pages">
- <h2>Recent Pages</h2>
- <ul>
- <?php if(!is_paged()) { ?>
- <?php
- $args = array( 'post_type' => 'page', 'posts_per_page' => 10 );
- $loop = new WP_Query( $args );
- ?>
- <?php while ( $loop->have_posts() ) : $loop->the_post(); ?>
- <li><a href="<?php the_permalink();?>"><?php the_title();?></a></li>
- <?php endwhile; ?>
- <?php wp_reset_query(); ?>
- <?php } ?>
- </ul>
- </div>
- </div>
- <div class="col-md-6">
- <div class="recent-posts">
- <h2>Recent Posts</h2>
- <ul>
- <?php if(!is_paged()) { ?>
- <?php
- $args = array( 'post_type' => 'post', 'posts_per_page' => 10 );
- $loop = new WP_Query( $args );
- ?>
- <?php while ( $loop->have_posts() ) : $loop->the_post(); ?>
- <li><a href="<?php the_permalink();?>"><?php the_title();?></a></li>
- <?php endwhile; ?>
- <?php wp_reset_query(); ?>
- <?php } ?>
- </ul>
- </div>
- </div>
- </div>
- </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement