BuddyBoss Home – Web Support Forums Themes Boss. theme Breadcrumb for posts boss theme.

Viewing 4 posts - 1 through 4 (of 4 total)
  • Question

    #53711
    @niel96

    How can i get breadcrumbs for posts on my blog? I’m working with the boss theme. I already tried some plugins but they don’t work with the boss theme. You have any suggestion?

    Answers

    #53866
    @vapvarun

    Hi @niel96
    You will need to modify single.php and will add breadcrumbs functions to it
    Let me know which plugin you are trying to use, i will suggest codes on the basis of it.
    Regards
    Varun Dubey

    #54501
    @niel96
    #54531
    @vapvarun

    Hi @niel96, you will need to add following codes in single.php

    
    <div class="breadcrumbs" typeof="BreadcrumbList" vocab="http://schema.org/">
        <?php if(function_exists('bcn_display'))
        {
            bcn_display();
        }?>
    </div>
    

    You can add it at line 170 before we have called

    
     <?php get_template_part( 'content', get_post_format() ); ?>
    

    Regards
    Varun Dubey

Viewing 4 posts - 1 through 4 (of 4 total)
  • The question ‘Breadcrumb for posts boss theme.’ is closed to new replies.