Advertisement
sparkweb

FoxyShop: Customize Main Menu Name

Feb 18th, 2012
481
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.17 KB | None | 0 0
  1. //Put this in your functions.php file
  2. add_filter("foxyshop_main_menu_name", "my_foxyshop_main_menu_name");
  3. function my_foxyshop_main_menu_name($q) {
  4.     return "Products";
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement