• 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.

Viewing 1 replies (of 1 total)
  • 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

Viewing 1 replies (of 1 total)
  • The topic ‘Single post title in footer?’ is closed to new replies.