Código PHP:
Ver original<?php
/*
Template Name: Noticias
*/
?>
<?php get_header(); ?>
<div id="columns">
<div id="centercol">
<?php $categorias = get_category('Noticias'); ?>
<?php
global $post;
$args = array( 'numberposts' => 5, 'offset'=> 0, 'category' => 4 ); $myposts = get_posts( $args );
foreach( $myposts as $post ) : setup_postdata($post); ?>
<div class="post-title">
<h2><a href="<?php the_permalink(); ?>" rel="title" title="<?php the_title_attribute(); ?>"> <?php the_title(); ?> </a></h2>
<div class="post-info">
<?php the_time('F, d, Y'); ?>
•
<?php the_category(', ') ?>
•
<?php the_author_posts_link(); ?>
</div>
<!--/post-info -->
</div>
<?php endforeach; ?>
</div> <!--/centercol -->
<?php get_sidebar(); ?>
<div class="clr"></div>
</div>
<!--/columns -->
<?php get_footer(); ?>