Skip to content

Instantly share code, notes, and snippets.

@KaineLabs
Created February 28, 2019 22:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KaineLabs/20f3909bbb53e02b972addd77712d56f to your computer and use it in GitHub Desktop.
Save KaineLabs/20f3909bbb53e02b972addd77712d56f to your computer and use it in GitHub Desktop.
Set Woocommerce Tab Slug.
<?php
/**
* Set woocommerce tab Slug.
*/
function yzc_set_woocommerce_tab_slug() {
// Set new slug by default the slug is "shop".
return 'shop';
}
add_filter( 'yz_woocommerce_tab_slug', 'yzc_set_woocommerce_tab_slug' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment