documents->get( $post_id ); if ( $doc && method_exists( $doc, 'is_built_with_elementor' ) ) { return (bool) $doc->is_built_with_elementor(); } } catch ( \Throwable $e ) { // Fail silently; treat as not built with Elementor. } } // Fallback: if Elementor meta exists, treat it as built. $raw = (string) get_post_meta( $post_id, '_elementor_data', true ); if ( '' !== trim( $raw ) ) { return true; } return false; }; ?>

Welcome Home Page

Your site is ready. Import a demo to get the full design, pages, and settings.

'; } if ( have_posts() ) : while ( have_posts() ) : the_post(); // If this is the minimal welcome page created on theme activation, render it in a padded card // so the text/buttons are not flush-left. $minimal_home = ( '1' === (string) get_post_meta( get_the_ID(), '_bongoto_minimal_home', true ) ); if ( $wrap_container && $minimal_home ) { echo '
'; } the_content(); if ( $wrap_container && $minimal_home ) { echo '
'; } endwhile; endif; if ( $wrap_container ) { echo ''; } ?>