How can I hard code a link to show the standard latest-posts front page?
I've changed my settings so that I have a static front page on my site, this also corresponds to my 'home' button
<a href="<?php echo get_settings('home'); ?>/" title="Return to the the frontpage">Home<br /><span>Frontpage</span></a>
However I want the next button on my menu ('news') to behave as the 'home' button normally would if it were set to display my latest posts.
So what link do I put in here for that?
<a href=" ?what goes here? " title="Read the latest news">News<br /><span>Read all about it</span></a>
Or do I need to monkey with one of the php files? I tried looking for what's returning the info in the get_settings('home') but I can't find it and I know little of php. I tried searching for help too but I think the terms are all too common for specific help.
Thanks in advance