Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save BruceMcKinnon/af4b80a5c9a30a1ff30f4acaac2ac3ff to your computer and use it in GitHub Desktop.
Save BruceMcKinnon/af4b80a5c9a30a1ff30f4acaac2ac3ff to your computer and use it in GitHub Desktop.
WP breadcrumbs for FoundationPress
//
// Add Breadcrumbs
//
function ccc_breadbrumbs() {
if ( !(is_home() || is_front_page()) ) {
echo '<div class="row"><div class="small-12 columns">';
// Call the standard FP breadcrumb
foundationpress_breadcrumb();
echo '</div></div>';
}
}
add_action('foundationpress_before_content', 'ccc_breadbrumbs');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment