Is it possible to add the current single post title into the footer? I'd like to do this because I'm trying to create a 'breadcrumb' navigation menu in the footer / outside of the loop.
Dale.
Is it possible to add the current single post title into the footer? I'd like to do this because I'm trying to create a 'breadcrumb' navigation menu in the footer / outside of the loop.
Dale.
yes
To display on single.php pages, I believe you can just add
<?php if(is_single()) echo get_the_title() ?>
to footer.php wherever you want it displayed. You can wrap the output in HTML tags to style as you need.
<p><?php if(is_single()) echo get_the_title() ?></p>
or whatever
This topic has been closed to new replies.