Reposition the Breadcrumbs

Unless otherwise indicated, the code snippets you see below should be placed into your theme’s functions.php file.

Here is the code needed to reposition the breadcrumbs:

<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
 
//* Reposition the breadcrumbs
remove_action( 'genesis_before_loop', 'genesis_do_breadcrumbs' );
add_action( 'genesis_after_header', 'genesis_do_breadcrumbs' );
What are your feelings