Created
February 5, 2014 14:16
-
-
Save goliver79/8824442 to your computer and use it in GitHub Desktop.
[WOOCOMMERCE] Remove "You are here" from breadcrumb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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