One of the great things about Genesis is that it offers you the option to display breadcrumbs by default. You can also choose to display them specifically on the front page (or blog home page), on single posts, on pages, on your 404 error page, and on archive (tag, category, date, etc. pages).
Depending on your design, you may want to move the breadcrumbs around a bit. You can move them below the header using the following code.
// Move Breadcrumbs Below Main Nav
remove_action('genesis_before_loop', 'genesis_do_breadcrumbs');
add_action('genesis_after_header', 'genesis_do_breadcrumbs');
If you would like to move the breadcrumbs to a different location, you can do that. Just substitute the appropriate Genesis hook in place of genesis_after_header.
Also, in order for this to work correctly, the above code should appear in your child theme’s functions.php after this code:
require_once(TEMPLATEPATH.'/lib/init.php');
Pretty simple, huh? If you have any questions, don’t hesitate to ask in the comments!
Liked this post? Get free updates via RSS when we post or
{ 1 comment… read it below or add one }
Tell us what you’re thinking…
and oh, if you want a pic to show with your comment, go get a gravatar!