Title: forbreakfast's Replies | WordPress.org

---

# forbreakfast

  [  ](https://wordpress.org/support/users/forbreakfast/)

 *   [Profile](https://wordpress.org/support/users/forbreakfast/)
 *   [Topics Started](https://wordpress.org/support/users/forbreakfast/topics/)
 *   [Replies Created](https://wordpress.org/support/users/forbreakfast/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/forbreakfast/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/forbreakfast/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/forbreakfast/engagements/)
 *   [Favorites](https://wordpress.org/support/users/forbreakfast/favorites/)

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [how to change theme options name in dashboard?](https://wordpress.org/support/topic/how-to-change-theme-options-name-in-dashboard/)
 *  [forbreakfast](https://wordpress.org/support/users/forbreakfast/)
 * (@forbreakfast)
 * [12 years, 12 months ago](https://wordpress.org/support/topic/how-to-change-theme-options-name-in-dashboard/#post-3732855)
 * Hi theregoesjb,
 * I’m currently trying to figure out the same thing. From what I can tell (well
   in the theme I’m customising anyway), the name of the theme options panel, as
   it appears in the admin panel, is called from core_functions.php. This file was
   sitting within the epanel folder of the theme package I downloaded. I’m sure 
   you’ll find something similar in your package.
 * This is the script that I think pertains to what we both want to do:
 * /* Save/Reset actions | Adds theme options to WP-Admin menu */
    add_action(‘admin_menu’,‘
   et_add_epanel’); function et_add_epanel() { global $themename, $shortname, $options;
   $epanel = basename(__FILE__);
 *  if ( isset( $_GET[‘page’] ) && $_GET[‘page’] == $epanel && isset( $_POST[‘action’])){
   
   epanel_save_data( ‘js_disabled’ ); //saves data when javascript is disabled }
 *  $core_page = add_theme_page( $themename . ‘ ‘ . esc_html__( ‘Options’, $themename),
   $themename . ‘ ‘ . esc_html__( ‘Theme Options’, $themename ), ‘switch_themes’,
   basename(__FILE__), ‘et_build_epanel’ );
 *  add_action( “admin_print_scripts-{$core_page}”, ‘et_epanel_admin_js’ );
    add_action(“
   admin_head-{$core_page}”, ‘et_epanel_css_admin’); }
 * That’s as far as I’ve got. You may have already figured out the answer, and if
   you have, I’d love to know!

Viewing 1 replies (of 1 total)