• Resolved srkrag

    (@srkrag)


    Hi there and thx for your theme.
    I can’t get to have breadcrumbs on my website.
    I’ve tried with Yoast, and Breadcrumbs Navxt.
    Breadcrumbs simply don’t show up.

    Any solution ?
    Thx

Viewing 4 replies - 1 through 4 (of 4 total)
  • You need to add the “yoast_breadcrumb()” function to your code to get that displayed.

    But before that create a child theme and activate it. Copy wp-content/themes/expound/header.php to wp-content/themes/expound-child/header.php

    Edit this file and add this after <div id="main" class="site-main"> the last line

    <?php if ( function_exists('yoast_breadcrumb') ) {
    	yoast_breadcrumb('<p id="breadcrumbs">','</p>');
    } ?>

    You may have to use CSS to style the breadcrumbs.

    More info here http://yoast.com/wordpress/breadcrumbs/

    Thread Starter srkrag

    (@srkrag)

    Thx Jesin it works now.

    Great to hear that!

    Please mark this thread as resolved if that solves your problem.

    Thread Starter srkrag

    (@srkrag)

    done!

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