Description
apply_filters('pixe_builder_elements_section', $order, $type, $part);
This filter allows you to register, deregister, and control the order of element sections depending on the page type and specific page part.
*A section is rendered only when at least one element is registered to it.
Parameters
$order: Section slug and title pairs (e.g. 'basic' => 'Basic Elements').
$type, $parts: You can find all available variables here.
Examples
add_filter('pixe_builder_elements_section', 'my_custom_elements_section', 10, 3);
function my_custom_elements_section($order, $type, $part){
$order['my-custom-section'] = 'My Custom Section';
return $order;
}