Advertisement
eappereira

Exibir posta recentes Wordpress

Jan 29th, 2015
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.75 KB | None | 0 0
  1. <!--
  2.  
  3. Elton Pereira - eltondeveloper@gmail.com
  4.  
  5. Exibir posta recentes WordPress
  6.  
  7. -->
  8.  
  9. <?php get_header(); ?>
  10.  
  11. <ul>
  12. <?php
  13.        $Recent_Posts = new WP_Query("showposts=5"); // 5 é o número de posts recentes que você deseja mostrar
  14.           while($Recent_Posts->have_posts()) : $Recent_Posts->the_post();?>
  15.            
  16.             <li>
  17.                 <a href="<?php the_permalink() ?>" title="<?php the_title(); ?> " rel="bookmark">
  18.                 <?php the_title();?>
  19.                  <?php the_post_thumbnail( 'medium' ); ?>
  20.            <h1><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h1>
  21.            <h2><?php the_time('d/m/Y'); ?></h2>                </a>
  22.             </li>
  23.        <?php endwhile; ?>
  24. </ul>
  25.  
  26.  
  27. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement