• I have a WordPress site and it is using a static page for the home or start page What I need to do is set up a menu button that links to the most recent post whatever that may be. This would be for the horizontal menu not the “recent post” widget in the side bar.

Viewing 1 replies (of 1 total)
  • You could try adding this code somewhere in your menu bar and styling it…

    <?php $postslist = get_posts('numberposts=1'); ?>
    <?php foreach ($postslist as $post) : setup_postdata($post); ?>
    <a href="<?php the_permalink();?>">Latest Post</a>
    <?php endforeach; ?>
Viewing 1 replies (of 1 total)
  • The topic ‘navigation link to most recent post.’ is closed to new replies.