<?php
/*======
*
* Elementor Mode
*
======*/
if( !function_exists( 'loquet_is_built_elementor' ) ) {
function loquet_is_built_elementor( $post_id = "" ) {
if( !empty( $post_id ) ) {
if( did_action( 'elementor/loaded' ) ) {
if( \Elementor\Plugin::$instance->db->is_built_with_elementor( $post_id ) ) {
return true;
}
}
}
}
}