Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #50155
    Casper
    Participant

    Hi there.

    I would like to know if the Adventurous Pro theme has the option to use breadcrumbs. If so, where do I enable it?

    If not, then could you tell me in which .php files do I have to add the following code:
    <?php if ( function_exists(‘yoast_breadcrumb’) ) {
    yoast_breadcrumb(‘<p id=”breadcrumbs”>’,'</p>’);
    } ?>

    I’m trying to go through all the steps of the Yoast SEO setup, and currently have issues with getting the breadcrumbs to show.

    Thank you for your time.

    #50183
    Sakin
    Keymaster

    @Casper: There are lot of Breadcrumb plugin in WordPress.org and we have already added support for the popular one that is “Breadcrumb NavXT” plugin. Just install that and it will start working.

    But if you want to use Yoast breadcrumb plugin then you need to build child theme, you can ready about child theme and download sample child theme from http://catchthemes.com/blog/create-child-theme-wordpress/ and then add the following code in your child theme functions.php file

    function adventurous_breadcrumb_display() {
    	if ( function_exists('yoast_breadcrumb') ) {
    		yoast_breadcrumb('<div class="breadcrumb container">','</div>');
    	} 
    }
    #50188
    Casper
    Participant

    Thank you very much. I installed the Breadcrumb NavXT and it works fine.

    Warm regards.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Breadcrumbs’ is closed to new replies.