Hey,
I would like to add a heading to my Projects Page: http://www.benrobins.com/projects/ In the same vein as my About me page. Just something like Recent Projects with a full width underline.
Is this simple to add?
Many Thanks,
Hey,
I would like to add a heading to my Projects Page: http://www.benrobins.com/projects/ In the same vein as my About me page. Just something like Recent Projects with a full width underline.
Is this simple to add?
Many Thanks,
Hey,
in template_portfolio.php replace:
<div id="content" >
with:
<h2><?php echo $title ?></h2>
<div id="content" >
and replace:
get_header();
with:
get_header();
$title = get_the_title();You must log in to post.