register_core_location( 'header' ); $manager->register_core_location( 'footer' ); } public function do_header() { elementor_theme_do_location( 'header' ); } public function do_footer() { elementor_theme_do_location( 'footer' ); } public function __construct() { add_action( 'elementor/theme/register_locations', [ $this, 'register_locations' ] ); add_action( 'elementor/page_templates/canvas/before_content', [ $this, 'do_header' ], 0 ); add_action( 'elementor/page_templates/canvas/after_content', [ $this, 'do_footer' ], 0 ); } }