Skip to content

Instantly share code, notes, and snippets.

@surefirewebserv
Forked from anonymous/functions.php
Last active April 16, 2019 14:22
Show Gist options
  • Save surefirewebserv/1027c4cb7dd9ae949161 to your computer and use it in GitHub Desktop.
Save surefirewebserv/1027c4cb7dd9ae949161 to your computer and use it in GitHub Desktop.
<?php
//* Reposition breadcrumb
remove_action( 'genesis_before_loop', 'genesis_do_breadcrumbs' );
add_action( 'genesis_after_header', 'sfws_do_breadcrumbs' );
function sfws_do_breadcrumbs(){
echo "<div class='wrap'>";
genesis_do_breadcrumbs();
echo "</div>";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment