All pastes #2070482 Raw Edit

Stuff

public text v1 · immutable
#2070482 ·published 2011-05-27 16:03 UTC
rendered paste body
 <?php 
$args = '';
$my_query = new WP_Query($args);
while ( $my_query->have_posts() ) : $my_query->the_post(); ?>
	<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
	<p>by <?php the_author(); ?> ON <?php the_date(); ?><p>
	<p><?php the_excerpt(); ?> [...]</p>
<?php endwhile; ?>
<br />
<?php wp_pagenavi();?>
<br />