/
home
/
cabinetdhs
/
www
/
wp-content
/
plugins
/
anywhere-elementor-pro
/
includes
/
themes
/
genesis
/
Upload File
HOME
<?php use Elementor\Plugin; get_header(); do_action( 'genesis_before_content_sidebar_wrap' ); genesis_markup( [ 'open' => '<div %s>', 'context' => 'content-sidebar-wrap', ] ); do_action( 'genesis_before_content' ); genesis_markup( [ 'open' => '<main %s>', 'context' => 'content', ] ); do_action( 'genesis_before_loop' ); while ( have_posts() ) : the_post(); if ( Plugin::instance()->preview->is_preview_mode() ) { the_content(); } else { do_action( 'aepro_single_data' ); } endwhile; // End of the loop. do_action( 'genesis_after_loop' ); genesis_markup( [ 'close' => '</main>', // End .content. 'context' => 'content', ] ); do_action( 'genesis_after_content' ); genesis_markup( [ 'close' => '</div>', 'context' => 'content-sidebar-wrap', ] ); do_action( 'genesis_after_content_sidebar_wrap' ); get_footer();