Skip to content

Instantly share code, notes, and snippets.

@robin-scott
Created December 19, 2017 22:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save robin-scott/27b6e4fcfa3a82f6bc37ca201db617e2 to your computer and use it in GitHub Desktop.
Save robin-scott/27b6e4fcfa3a82f6bc37ca201db617e2 to your computer and use it in GitHub Desktop.
Hide Yoast breadcrumbs on frontpage of WordPress
//this gist will hide Yoast breadcrumbs on the blog front page (the home page if you made this a page)
// see https://silicondales.com/tutorials/wordpress-tutorials/code-hide-content-front-page-wordpress/
<?php if( !is_front_page() ) {
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