the home of the wordpress wppizza plugin
WPPizza – A Restaurant Plugin for WordPress › Support › Code Snippets WPPizza v2.x (read only)(Code Snippets for v3.x) › changing backend names/labels
add_filter('wppizza_cpt_lbls','my_wppizza_cpt_lbls'); function my_wppizza_cpt_lbls($lbl){ /**change menu name from WPPizza to My Shop. print_r($lbl) to view all variables**/ $lbl['menu_name']='My Shop'; return $lbl; }
would I put this in the wp functions php or the wppizza function php
any codesnippets and such (unless otherwise specified) will always belong into your THEMES functions.php
(or better still, your child theme’s functions.php)