/**
 * Consulta la API de YouTube.
 */
function icpd_youtube_request($url) {

    $response = wp_remote_get($url, array(
        'timeout' => 20
    ));

    if (is_wp_error($response)) {
        return false;
    }

    $body = wp_remote_retrieve_body($response);

    $data = json_decode($body, true);

    if (isset($data['error'])) {

        echo '<h2>URL CONSULTADA</h2>';
        echo '<pre>' . esc_html($url) . '</pre>';

        echo '<h2>RESPUESTA DE YOUTUBE</h2>';
        echo '<pre>';
        print_r($data);
        echo '</pre>';

        exit;
    }

    return $data;
}<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://iglesiapresenciadivina.com/wp-sitemap-index.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://iglesiapresenciadivina.com/wp-sitemap-posts-post-1.xml</loc></sitemap><sitemap><loc>https://iglesiapresenciadivina.com/wp-sitemap-posts-page-1.xml</loc></sitemap><sitemap><loc>https://iglesiapresenciadivina.com/wp-sitemap-posts-elementor-hf-1.xml</loc></sitemap><sitemap><loc>https://iglesiapresenciadivina.com/wp-sitemap-taxonomies-category-1.xml</loc></sitemap><sitemap><loc>https://iglesiapresenciadivina.com/wp-sitemap-users-1.xml</loc></sitemap></sitemapindex>
