Skip to content

Instantly share code, notes, and snippets.

@frankschrijvers
Created September 19, 2016 09:03
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 frankschrijvers/e7c48b4702900d616506170a3c440af5 to your computer and use it in GitHub Desktop.
Save frankschrijvers/e7c48b4702900d616506170a3c440af5 to your computer and use it in GitHub Desktop.
Add more categories
<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
case 'clothing':
return __('Order your Clothes', 'your_theme_text_domain' );
break;
case 'hoodies':
return __('buy your Hoodie', 'your_theme_text_domain' );
break;
case 'music':
return __('Order your Album', 'your_theme_text_domain' );
break;
default;
return __( 'Order now', 'your_theme_text_domain' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment