Guest User

Untitled

a guest
Nov 24th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. <?php /*
  2. Example template
  3. Author: mitcho (Michael Yoshitaka Erlewine)
  4. */
  5. ?><h3>Articles sur le meΜ‚me sujet :</h3>
  6. <?php if ($related_query->have_posts()):?>
  7. <?php while ($related_query->have_posts()) : $related_query->the_post(); ?>
  8.  
  9.  
  10.  
  11. <div class="tanboxtb">
  12.  
  13.  
  14. <?php
  15. if(get_post_meta($post->ID, 'img_tab', true)!=''):
  16. ?>
  17.  
  18. <img src="/up/tab/<?php echo get_post_meta($post->ID, 'img_tab', true); ?>" alt="<?php the_title(); ?>" class="left" height="112" width="173" />
  19.  
  20.  
  21. <?php else:
  22. ?>
  23.  
  24. <img src="<?php echo bloginfo('template_url'); ?>/images/up/blank_no.jpg" alt="<?php the_title(); ?>" class="left" height="112" width="173" />
  25.  
  26. <?php
  27. endif;
  28. ?></a>
  29.  
  30.  
  31. <div class="zinetitletb"><a href="<?php the_permalink() ?>">
  32.  
  33. <?php the_title(); ?></a> </div>
  34. </div>
  35.  
  36.  
  37. <?php endwhile; ?>
  38. <?php else: ?>
  39. <p>No related posts.</p>
  40. <?php endif; ?>
Add Comment
Please, Sign In to add comment