Advertisement
Guest User

Untitled

a guest
Jun 28th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.78 KB | None | 0 0
  1. <?php if (have_posts()) : while(have_posts()) : $i++; if(($i % 2) == 0) : $wp_query->next_post(); else : the_post(); ?>
  2.  
  3. <div id="left-column">
  4.  
  5. <a href="<?php the_permalink() ?>"><h1><?php the_title_attribute(); ?></h1></a>
  6.  
  7.             <a class="image" href="<?php the_permalink() ?>" rel="bookmark" title="Lien permanent vers <?php the_title_attribute(); ?>">
  8.                 <?php padd_theme_post_thumbnail(); ?>
  9.             </a>
  10.             <div class="excerpt">
  11.                 <?php the_excerpt();?>
  12.                
  13.             <a href="<?php comments_link(); ?>">
  14.             <div class="comments">
  15.             <span class="nombreCommentaires">
  16.             <?php
  17.             comments_number('Pas de commentaire', '1 commentaire', '% commentaires');
  18.             ?>
  19.             </span>
  20.             </div>
  21.             </a>
  22.            
  23.             </div>
  24.  
  25.            
  26. </div>
  27.  
  28. <?php endif; endwhile; else: ?>
  29. <div>Alternate content</div>
  30. <?php endif; ?>
  31.  
  32. <?php $i = 0; rewind_posts(); ?>
  33.  
  34. <?php if (have_posts()) : while(have_posts()) : $i++; if(($i % 2) !== 0) : $wp_query->next_post(); else : the_post(); ?>
  35.  
  36. <div id="right-column">
  37. <a href="<?php the_permalink() ?>"><h1><?php the_title_attribute(); ?></h1></a>
  38.             <a class="image" href="<?php the_permalink() ?>" rel="bookmark" title="Lien permanent vers <?php the_title_attribute(); ?>">
  39.                 <?php padd_theme_post_thumbnail(); ?>
  40.             </a>
  41.             <div class="excerpt">
  42.                 <?php the_excerpt();?>
  43.                
  44.                             <a href="<?php comments_link(); ?>">
  45.             <div class="comments">
  46.             <span class="nombreCommentaires">
  47.             <?php
  48.             comments_number('Pas de commentaire', '1 commentaire', '% commentaires');
  49.             ?>
  50.             </span>
  51.             </div>
  52.             </a>
  53.             </div>
  54.  
  55.            
  56. </div>
  57.  
  58. <?php endif; endwhile; else: ?>
  59. <div>Alternate content</div>
  60. <?php endif; ?>
  61.  
  62.     <?php remove_filter('excerpt_length', 'padd_theme_excerpt_index_length'); ?>
  63.     <?php Padd_PageNavigation::render(); ?>
  64.  
  65. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement