Skip to content

Instantly share code, notes, and snippets.

@goliver79
Created February 5, 2014 14:16
Show Gist options
  • Save goliver79/8824442 to your computer and use it in GitHub Desktop.
Save goliver79/8824442 to your computer and use it in GitHub Desktop.
[WOOCOMMERCE] Remove "You are here" from breadcrumb
<?php
/**
* remove "You are here" from breadcrumb
*/
add_filter('woo_breadcrumbs_args','lgpd_breadcrumb_args_filter');
function lgpd_breadcrumb_args_filter( $args ){
$args[ 'before' ] = '';
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment