Skip to content

Instantly share code, notes, and snippets.

@ibndawood
Created May 15, 2015 07:12
Show Gist options
  • Save ibndawood/f1259e4cffea91603ee9 to your computer and use it in GitHub Desktop.
Save ibndawood/f1259e4cffea91603ee9 to your computer and use it in GitHub Desktop.
Changing "Shop By Department" in MediaCenter Wordpress Theme
add_filter( 'mc_shop_by_department', 'mc_change_shop_by_department', PHP_INT_MAX );
function mc_change_shop_by_department(){
return 'Shop Categories'; // Your custom text here
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment