Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save wp-seopress/ef2213434833b3dc8fb39f3553933999 to your computer and use it in GitHub Desktop.
Save wp-seopress/ef2213434833b3dc8fb39f3553933999 to your computer and use it in GitHub Desktop.
Display breadcrumbs before main content with DIVI theme
function sp_breadcrumb_after_header() {
if(function_exists('seopress_display_breadcrumbs')) {
seopress_display_breadcrumbs();
}
}
add_action('et_before_main_content', 'sp_breadcrumb_after_header');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment