I want to keep my custom category first.Someone can help.
See this my Code,
function add_elementor_widget_categories( $elements_manager ) {
$elements_manager->add_category(
'custom-widget',
[
'title' => __( 'Custom Widget', 'elementor' ),
'icon' => 'fa fa-plug',
'active' => true,
]
);
}
add_action( 'elementor/elements/categories_registered', 'add_elementor_widget_categories' );
2
Answers
I use something like this
Based on this https://github.com/elementor/elementor/issues/7445#issuecomment-472822406
The solution that worked for me was
Also found on the comment thread from above: https://github.com/elementor/elementor/issues/7445#issuecomment-692123467