Advertisement
Guest User

Untitled

a guest
Jan 21st, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.68 KB | None | 0 0
  1. <div id="mvp-feat-tab-col1" class="mvp-feat1-list left relative mvp-tab-col-cont">
  2.     <?php global $do_not_duplicate; if (isset($do_not_duplicate)) { if(get_option('mvp_feat_ad')) { $mvp_feat_list_num = 8; } else { $mvp_feat_list_num = 10; }; $paged = (get_query_var('page')) ? get_query_var('page') : 1; query_posts(array( 'posts_per_page' => $mvp_feat_list_num, 'post__not_in'=>$do_not_duplicate, 'paged' =>$paged, 'ignore_sticky_posts'=> 1 )); if (have_posts()) : while (have_posts()) : the_post(); ?>
  3.     <a href="<?php the_permalink(); ?>" rel="bookmark">
  4.         <div class="mvp-feat1-list-cont left relative">
  5.             <?php if (  (function_exists('has_post_thumbnail')) && (has_post_thumbnail())  ) { ?>
  6.             <div class="mvp-feat1-list-out relative">
  7.                 <div class="mvp-feat1-list-img left relative">
  8.                     <?php the_post_thumbnail('mvp-small-thumb'); ?>
  9.                 </div>
  10.                 <!--mvp-feat1-list-img-->
  11.                 <div class="mvp-feat1-list-in">
  12.                     <div class="mvp-feat1-list-text">
  13.  
  14.                         <h2>
  15.                             <?php the_title(); ?>
  16.                         </h2>
  17.                         <span class="mvp-cd-date left relative">
  18.                             <?php the_date('j F Y');  ?> at
  19.                             <?php the_date('g:i a'); ?>
  20.                         </span>
  21.                     </div>
  22.                     <!--mvp-feat1-list-text-->
  23.                 </div>
  24.                 <!--mvp-feat1-list-in-->
  25.             </div>
  26.             <!--mvp-feat1-list-out-->
  27.             <?php } else { ?>
  28.             <div class="mvp-feat1-list-text">
  29.  
  30.                 <h2>
  31.                     <?php the_title(); ?>
  32.                 </h2>
  33.                 <span class="mvp-cd-date left relative">
  34.                     <?php the_date('j F Y');  ?> at
  35.                     <?php the_date('g:i a'); ?>
  36.                 </span>
  37.  
  38.             </div>
  39.             <!--mvp-feat1-list-text-->
  40.             <?php } ?>
  41.         </div>
  42.         <!--mvp-feat1-list-cont-->
  43.     </a>
  44.     <?php endwhile; endif; wp_reset_query(); } ?>
  45. </div> <!--mvp-feat-tab-col1-->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement