Moving the breadcrumbs from their default location is very simple.
The first step is to unhook the breadcrumbs from the default location using the following code:
remove_action('genesis_before_loop', 'genesis_do_breadcrumbs');
You can, then, place the breadcrumbs at another location using a different Genesis Hook.
To move the breadcrumb so it’s above both the content and sidebar, we would use the following code.
add_action('genesis_before_content', 'genesis_do_breadcrumbs');
The final code will look like this:
// Move breadcrumbs remove_action('genesis_before_loop', 'genesis_do_breadcrumbs'); add_action('genesis_before_content', 'genesis_do_breadcrumbs');
The code above should be placed in your child theme functions.php file anywhere after
require_once(TEMPLATEPATH.'/lib/init.php');
and before the following closing code (if it exists):
?>