1 2 3 4 5 6 7 8 9 10 11 12 13 | // changes the name of the menu item of theme options framework function wpmark_change_theme_options_menu_name( $menu ) { /* alter the options menu paramters */ $menu[ 'menu_title' ] = 'Site Options'; // set the menu title $menu[ 'page_title' ] = 'Site Options'; // set the menus page title /* return our modified menu */ return $menu; } add_filter( 'optionsframework_menu', 'wpmark_change_theme_options_menu_name' ); |