File Editor
Directories:
.. (Back)
controls
preview
utils
Files:
controls.js
panels.js
sections.js
settings.js
Create New File
Create
Edit File: panels.js
/** * Register Customizer Panels * * Registers defined panels to use in the * customizer for this theme using the js * api. */ const { panels } = egfCustomize; const { customize } = wp; export const registerPanels = () => { customize.bind('ready', () => { for (const panelId in panels) { const { capability, description, priority, title, transport } = panels[panelId]; const panel = new customize.Panel(panelId, { capability, description, priority, title, transport }); customize.panel.add(panel); } }); };
Save Changes
Rename File
Rename