Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php if ( have_posts() ) : ?>
- <!-- if we're on a mobile device, or if we're on the main home page, don't use Standard Blog List -->
- <?php $use_std_blog_list = true;
- if ( wp_is_mobile() || ( is_home() && ! is_paged() ) ) {
- $use_std_blog_list = false;
- }
- ?>
- <?php if ( ot_get_option('blog-standard') == 'on' && $use_std_blog_list ): ?>
- <?php while ( have_posts() ): the_post(); ?>
- <?php get_template_part('content-standard'); ?>
- <?php endwhile; ?>
- <?php else: ?>
- <div class="post-list group">
- <?php $i = 1; echo '<div class="post-row">'; while ( have_posts() ): the_post(); ?>
- <?php get_template_part('content'); ?>
- <?php if($i % 2 == 0) { echo '</div><div class="post-row">'; } $i++; endwhile; echo '</div>'; ?>
- </div><!--/.post-list-->
- <?php endif; ?>
- <?php get_template_part('inc/pagination'); ?>
- <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment