Forum

Thread tagged as: Question, Addons, Blog

Breadcrumbs in blog pages

Hi

I've read the documentation about breadcrumbs and this is the first time of trying them... is it possible to use breadcrumbs in blog pages? As I've added;

<?php perch_pages_breadcrumbs(); ?>

to the post.php in the relevant area, but nothings showing up. Have I missed something?

Thanks Wayne

Wayne Hooper

Wayne Hooper 6 points

  • 7 years ago

That is because it is perch_pages and you are using perch_blog

You can just create it by doing the following:

<a href="/">Home</a> &gt; <a href="/blog">Blog</a> &gt; <?php perch_blog_post_field(perch_get('s'), 'postTitle'); ?>

Thanks for your reply. I will try this in the morning.

Thanks brandon.

Works a treat. Marked as solved.