Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Prroffessorr/a2b3392ff14a7255cb44085d265420b2 to your computer and use it in GitHub Desktop.
Save Prroffessorr/a2b3392ff14a7255cb44085d265420b2 to your computer and use it in GitHub Desktop.
Wordpress example of working with bread crumbs
<?php
//Функция удаления стандартных хлебных крошек
function remove_shop_breadcrumbs(){
remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0);
}
<?php
//Удаляем стандартные хлебные крошки
do_action("remove_shop_breadcrumbs");
//Масиив параметоров для хлебных крошек
$breadcrumb = array(
'delimiter' => '',
);
//Выводим в любом файле новые хлебные крошки
<section class="breadcrumbs">
<div class="container">
<div class="row">
<div class="col-12">
<?php woocommerce_breadcrumb($breadcrumb); ?>
</div>
</div>
</div>
</section>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment