Comments Iliasmoufaddal started the conversationJuly 3, 2020 at 8:25amHello, I want to show breadcrumbs in my blogs so I have installed Yoast Seo and enabled showing breadcrumbs but still not having breadcrumbs display. Thanks[deleted] repliedJuly 3, 2020 at 8:44amHi Iliasmoufaddal, You can use Breadcrumb NavXT plugin to enable that functionality. When you install the plugin please make sure to add this code in the functions.php file of your theme too: add_action( 'kalium_header_main_heading_title_before', function() { if ( ! function_exists( 'bcn_display' ) ) { return; } if(!is_front_page() && !is_page('home-business')) { echo '<div class="container"><div class="site-breadcrumb">' . bcn_display( true ) . '</div></div>'; } } ); so the breadcrumbs will appear. Then you can tweak the options of the plugin to fit your needs. Have a nice day! Sign in to reply ...
Hello,
I want to show breadcrumbs in my blogs so I have installed Yoast Seo and enabled showing breadcrumbs but still not having breadcrumbs display.
Thanks
Hi Iliasmoufaddal,
You can use Breadcrumb NavXT plugin to enable that functionality. When you install the plugin please make sure to add this code in the functions.php file of your theme too:
so the breadcrumbs will appear. Then you can tweak the options of the plugin to fit your needs.
Have a nice day!