It depends how you are displaying your menu.
If you are hard-coding the menu, you can query that category and display the URL to the most recent post in that category.
Here is one example:
<?php
// grab the latest post from the fashion category
// assuming fashion is cat ID 8 (you'll have to change this)
$latestFashionPost = new WP_Query();
$latestFashionPost->query('cat=8&showposts=1');
while ($latestFashionPostt->have_posts()) : $latestFashionPost->the_post(); ?>
<li><a href="<?php the_permalink(); ?>">Fashion</a></li>
<?php endwhile; ?>
Thank you racer the menu is not hard-coded it is part of Atahualpa Theme 3.4.4 options which has page menu bar, and category menu bar, options
Bummer.
When menus are coded like that to pull the links dynamically(and most themes are), it is very difficult to “tap into” that and do something different with one of the output values. I am not familiar with that theme, so I am not sure where you would even edit the code for the menu display.
You would most likely have to create a custom page template to display that latest post I am afraid.
That’s all I can think of.
Bummer is the word I am afraid, Thanks racer and since being a newbie can you point me in the right direction for a easy walk through tut for creating a customs page.
Thanks racer and everyone else, I went ahead and install a new wp blog on my server and used old faithful (page-to-links) plugin to direct my nav bar.