Advertisement
pusatdata

WP Trik: LOOP dalam Tabel

May 28th, 2016
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <table border="1">
  2. <?php while ( have_posts() ) : the_post(); ?>
  3.  
  4. <tr><td colspan="2"><a class="judul" href="<?php the_permalink(); ?>"><?php the_title(); ?></a></td></tr>
  5. <tr><td colspan="2">Oleh: <?php the_tags(' '); ?> | Media: <?php the_category(', '); ?> | Terbit: <?php the_time('l, j F Y'); ?> | Dibaca: <?php if(function_exists('the_views')) { the_views(); }?></td></tr>
  6.  
  7. <?php endwhile; ?>
  8. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement