
https://github.com/elementor/elementor/issues/9332
Решение
/**
* Add non-supported post type support
*/
add_filter( 'elementor_pro/utils/get_public_post_types', function() {
$post_types['post-type-slug-1'] = 'Post Type Name 1';
$post_types['post-type-slug-2'] = 'Post Type Name 2';
$post_types['post-type-slug-3'] = 'Post Type Name 3';
$post_types['post-type-slug-4'] = 'Post Type Name 4';
$post_types['post-type-slug-5'] = 'Post Type Name 5';
return $post_types;
} );





