Hi – I appreciate your response. What is the proper way to link to a specific post from a listing of posts? Here is the code I used:
<?php $args = array(
'posts_per_page' => 3,
'orderby' => 'date',
'order' => 'DESC',
'post_type' => 'post',
'post_status' => 'publish',
'suppress_filters' => true
);
$posts_array = get_posts( $args );
foreach ( $posts_array as $post ) : setup_postdata( $post );
?>
<a href="<?php echo the_permalink();?>" class="underline"><?php echo the_title();?></a>
<?php
endforeach;