Needing to display just the latest Blog Post from a specific Blog Post Category on a new regular page. I could use the following php code on a php page but figured there must be another easier way without having to create custom php template pages within the Pro Theme that potentially could get overwritten on updates.
<?php $recent = new WP_Query("cat='7'&showposts=1"); while($recent->have_posts()) : $recent->the_post();?>
<h3><b><?php the_title(); ?></b></h3>
<?php the_content(); ?>