Im trying to put a link on each single post page back to my portfolio page(my post excerpt page)? This is probably really simple but i cant figure out how.
<a href="?page_id=5">Back to Portfolio</a>
Or you could use
<a href="<?php echo get_permalink(5); ?>">Back to Portfolio</a>
or even set up a get_ID_by_name if you wanted to be fancier. The get_permalink function will account for having pretty permalinks set up and whatnot.
This topic has been closed to new replies.