[ 'page', 'elementor_library', 'post' ], 'meta_query' => array( array( 'key' => '_elementor_data', 'value' => 'form', 'compare' => 'LIKE', ), ), ); header( 'Content-type: text/html' ); return ( new WP_Query( $args ) )->get_posts(); } public static function should_load_elementor_files( $load, $filename ) { if ( strpos( basename( $filename, '.php' ), '-elementor-' ) !== false && ! static::exists() ) { $load = false; } return $load; } public static function create_dynamic_trigger( $prefix, $id ) { return $prefix . '_' . $id; } }