get_error_message();
}
// Get the footer
$footer_response = wp_remote_get($external_url . '/elementor-hf/footer/');
if (is_wp_error($footer_response)) {
return 'Footer not available: ' . $footer_response->get_error_message();
}
// Retrieve and return the body of the header and footer
$header = wp_remote_retrieve_body($header_response);
$footer = wp_remote_retrieve_body($footer_response);
return $header . $footer;
}
///end
echo $header; ?>