How to remove breadcrumb from all pages in WordPress?

In most WordPress Themes there is an additional navigation menu for your visitors to know which page they are on. For example:

WordPressBreadCrumb

To have a more clean design of your website, you may remove this by deleting the following code from your Theme folder -> header.php file.

Managed WordPress Hosting with Personal WP Assistant
  • echo ‘<div id=”wrapper_stripe”>’;
  • if(class_exists(‘kclass_breadcrumb’)){ $bc = new kclass_breadcrumb; }
  • echo ‘</div>’;

or remove just the

  • if(class_exists(‘kclass_breadcrumb’)){ $bc = new kclass_breadcrumb; }

if you want to keep the “wrapper_stripe” (because of the design, etc.).