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:

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.

  • 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.).

WebHostFace

Share
Published by
WebHostFace