Stuff
public text v1 · immutable <?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 />