Title: Customization on wordpress Admin customizer panle
Last modified: January 30, 2017

---

# Customization on wordpress Admin customizer panle

 *  [Karthick Dev](https://wordpress.org/support/users/karthick-dev/)
 * (@karthick-dev)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/customization-on-wordpress-admin-customizer-panle/)
 * _[ Moderator note: [moved to Fixing WordPress](https://wordpress.org/support/topic/wheres-my-topic-gone?replies=1&view=all).]_
 * Hello All,
 * I would like to customize the wordpress admin customizer panel as default it 
   should display with mobile view when admin open’s the customizer panel : preview-
   mobile active
 * So that admin can directly looks the webapp in the mobile view, Is there any 
   possibility that can be done without override the core of wordpress,
 * And I would like to apply a mobile frame which is shows exactly like on this:
   
   [http://www.awesomescreenshot.com/image/2113320/c9a5e715eaf4d7fd079d2c00b51ec379](http://www.awesomescreenshot.com/image/2113320/c9a5e715eaf4d7fd079d2c00b51ec379)

Viewing 7 replies - 1 through 7 (of 7 total)

 *  [gnoric](https://wordpress.org/support/users/gnoric/)
 * (@gnoric)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/customization-on-wordpress-admin-customizer-panle/#post-8715512)
 * It’s probably not the nicest solution, but you can add a js script, and a css
   file to the wp-admin. Then you can change the selection on load, and add your
   background using css.
 * [https://codex.wordpress.org/Plugin_API/Action_Reference/admin_enqueue_scripts](https://codex.wordpress.org/Plugin_API/Action_Reference/admin_enqueue_scripts)
 *  Thread Starter [Karthick Dev](https://wordpress.org/support/users/karthick-dev/)
 * (@karthick-dev)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/customization-on-wordpress-admin-customizer-panle/#post-8715690)
 * Hello Gnoric
 * Thanks for your input let me get into it.
 *  Thread Starter [Karthick Dev](https://wordpress.org/support/users/karthick-dev/)
 * (@karthick-dev)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/customization-on-wordpress-admin-customizer-panle/#post-8723565)
 * Hello Gnori,
 * Right now I’m Working for the customizer option to get set with the different
   development approach.
    Is it possible to duplicate the file customize.php which
   is in wp-admin folder so that I can load that file separate to get some Admin
   customizer functionality, Please do let me know if there is way I can move with
   on this thanks.
 *  [gnoric](https://wordpress.org/support/users/gnoric/)
 * (@gnoric)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/customization-on-wordpress-admin-customizer-panle/#post-8723740)
 * Unfortunately no. At least not in the way you’d want, while keeping it safe for
   upgrade. However, I just looked at the available hooks and actions in that doc,
   and would like to improve my previous answer.
 * These are the hooks you should be using for embedding scripts and styles on the
   customize page:
 *     ```
       do_action( 'customize_controls_enqueue_scripts' );
       /**
        * Fires when Customizer control styles are printed.
        *
        * @since 3.4.0
        */
       do_action( 'customize_controls_print_styles' );
   
       /**
        * Fires when Customizer control scripts are printed.
        *
        * @since 3.4.0
        */
       do_action( 'customize_controls_print_scripts' );
       ```
   
 *  Thread Starter [Karthick Dev](https://wordpress.org/support/users/karthick-dev/)
 * (@karthick-dev)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/customization-on-wordpress-admin-customizer-panle/#post-8723919)
 * Hello Again,
 * FYI : Since I’m not going to upgrade my current version , I’m planning to stick
   with same version still to get achieve with this .
 * So if I got the exact duplicate file for customizer.php so that i can build the
   custom panel for the mobile view separate.
 * Since I’m planning to load page URL via IFrame So I need a new URL for the Customizer
   to load this mobile view section ,
 * Right now I’m trying with : customizer.php and rename that as customizer_mobile.
   php which is inside the admin folder. Within that $wp_customize I can set a variable
   to make this action got succed, Right I got the page loads but I’m able to get
   the customizer option in left side.
 * If there was an option please to let know so that I can try them off
 *  [gnoric](https://wordpress.org/support/users/gnoric/)
 * (@gnoric)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/customization-on-wordpress-admin-customizer-panle/#post-8723985)
 * Do not create files in the wp_admin folder, as this will not be safe from upgrades.
 * If you wanted to modify the $wp_customize global, this would be the way to go:
 *     ```
       function mytheme_customize_register( $wp_customize ) {
          //All our sections, settings, and controls will be added here
          // modify the wp_customize
       }
       add_action( 'customize_register', 'mytheme_customize_register' );
       ```
   
 * as described in the [WP Codex: Customize API](https://codex.wordpress.org/Theme_Customization_API)
 * If you wanted to change existing settings, please refer to chapter 3
    [https://codex.wordpress.org/Theme_Customization_API#Part_3:_Configure_Live_Preview_.28Optional.29](https://codex.wordpress.org/Theme_Customization_API#Part_3:_Configure_Live_Preview_.28Optional.29)
 *  Thread Starter [Karthick Dev](https://wordpress.org/support/users/karthick-dev/)
 * (@karthick-dev)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/customization-on-wordpress-admin-customizer-panle/#post-8724609)
 * Thanks will let you know the update if that moves good as expected.

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘Customization on wordpress Admin customizer panle’ is closed to new replies.

## Tags

 * [admin](https://wordpress.org/support/topic-tag/admin/)
 * [preview](https://wordpress.org/support/topic-tag/preview/)

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 7 replies
 * 2 participants
 * Last reply from: [Karthick Dev](https://wordpress.org/support/users/karthick-dev/)
 * Last activity: [9 years, 4 months ago](https://wordpress.org/support/topic/customization-on-wordpress-admin-customizer-panle/#post-8724609)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
