Tagged: Adventurous Pro, Breadcrumbs, Seo
- This topic has 2 replies, 2 voices, and was last updated 10 years, 1 month ago by
Casper.
-
AuthorPosts
-
January 17, 2015 at 7:08 pm #50155
Casper
ParticipantHi 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.
January 18, 2015 at 11:46 am #50183Sakin
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>'); } }
January 18, 2015 at 2:36 pm #50188Casper
ParticipantThank you very much. I installed the Breadcrumb NavXT and it works fine.
Warm regards.
-
AuthorPosts
- The topic ‘Breadcrumbs’ is closed to new replies.