Guest User

Untitled

a guest
Feb 22nd, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. add_filter( 'get_the_breadcrumb_args', 'woo_custom_separator', 10 );
  2.  
  3. function woo_custom_separator ( $args ) {
  4.  
  5. $args = array('separator' => '>');
  6.  
  7. return $args;
  8. }
Add Comment
Please, Sign In to add comment