Created
August 16, 2014 15:41
-
-
Save generatepress/a13fbd2bb88008da572f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action('generate_before_content','generate_add_breadcrumbs'); | |
function generate_add_breadcrumbs() | |
{ | |
if ( function_exists('yoast_breadcrumb') ) { | |
yoast_breadcrumb('<p id="breadcrumbs">','</p>'); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks! :)