Support Center

PixeBuilder Support Center
Support Center>pixe_enqueue_editor_scripts
Updated On: January 21, 2026

pixe_enqueue_editor_scripts

Description

do_action('pixe_enqueue_editor_scripts');

This action is triggered after the editor scripts have been enqueued. Use this action to register additional scripts or data for the editor settings area.

It is typically used to add extra styles and instant controls for an item within the editor.

Examples

add_action('pixe_enqueue_editor_scripts', 'my_custom_editor_script');
function my_custom_editor_script(){
	wp_enqueue_script('my-custom-editor-js', '/path/to/script.js', array('jquery'), '1.0.0', true);
}
Is This Article Helpful?

We value your feedback! Let us know if this article helped you:

Still need help? Contact Us for further assistance.

Table Of Contents