wordpress resimsiz haber arÅŸivi


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. <?php while(have_posts()) : the_post(); ?>
  2. <ul>
  3. <?php
  4. $myposts = get_posts('numberposts=-1&');
  5. foreach($myposts as $post) :
  6. ?>
  7. <li><?php the_time('F d'); ?>: <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
  8.  
  9. <?php endforeach; ?>
  10. </ul>
  11.  
  12. <?php endwhile; ?>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.