function ekvp_importar($url) { $response = wp_remote_get($url); if (is_wp_error($response)) return "Error obteniendo URL."; $html = wp_remote_retrieve_body($response); libxml_use_internal_errors(true); $dom = new DOMDocument(); $dom->loadHTML(''.$html); libxml_clear_errors(); $xpath = new DOMXPath($dom); // ------------------------- // TÍTULO EDITORIAL // ------------------------- $titulo_editorial = trim( $xpath->query('//p[@class="Titulo"]')->item(0)->textContent ); // ------------------------- // COPETE // ------------------------- $copete = trim( $xpath->query('//p[@class="copete"]')->item(0)->textContent ); // ------------------------- // PILOTO (desde copete) // ------------------------- preg_match('/([A-Z][a-z]+)\s([A-Z][a-z]+)/', $copete, $match); $nombre = $match[1]; $apellido = strtoupper($match[2]); $titulo_final = substr($nombre,0,1).".".$apellido.": ".$titulo_editorial; // ------------------------- // IMÁGENES (respetar orden real) // ------------------------- $imagenes = []; // Imagen 1 (la del bloque principal) $img1 = $xpath->query('(//img)[2]')->item(0)->getAttribute('src'); // Imagen _3 $img3 = $xpath->query('//img[contains(@src,"_3_")]')->item(0)->getAttribute('src'); // Imagen _2 (la última fuera del bloque) $img2 = $xpath->query('//img[contains(@src,"_2_")]')->item(0)->getAttribute('src'); $imagenes = [$img1, $img3, $img2]; // ------------------------- // TEXTO NORMAL (antes del Campeonato) // ------------------------- $parrafos = $xpath->query('//p[@class="texto_normal"]'); $cuerpo_parrafos = []; foreach ($parrafos as $p) { $texto_html = ''; foreach ($p->childNodes as $child) { $texto_html .= $dom->saveHTML($child); } $cuerpo_parrafos[] = $texto_html; } // ------------------------- // CONSTRUIR CUERPO // ------------------------- $cuerpo = ''; // Imagen 1 $cuerpo .= "

"; // Primer párrafo con CABA $cuerpo .= "

CABA. ".$cuerpo_parrafos[0]."

"; // Siguientes 3 párrafos for ($i=1; $i<=3; $i++) { if (!empty($cuerpo_parrafos[$i])) { $cuerpo .= "

".$cuerpo_parrafos[$i]."

"; } } // Imagen 2 (_3) $cuerpo .= "

"; // Resto del texto for ($i=4; $i"; } // Imagen 3 (_2) $cuerpo .= "

"; // Cierre $cuerpo .= "

Ph. Lucas Garcia
Informó: E-Kart Virtual Press

"; // ------------------------- // CREAR POST // ------------------------- $post_id = wp_insert_post([ 'post_title' => $titulo_final, 'post_content' => $cuerpo, 'post_excerpt' => $copete, 'post_status' => 'draft', 'post_type' => 'post' ]); // Categorías wp_set_post_categories($post_id, [ get_cat_ID('PILOTOS EKVP'), get_cat_ID('RMC BUENOS AIRES') ]); // ------------------------- // IMAGEN DESTACADA // ------------------------- require_once(ABSPATH . 'wp-admin/includes/media.php'); require_once(ABSPATH . 'wp-admin/includes/file.php'); require_once(ABSPATH . 'wp-admin/includes/image.php'); $thumb_id = media_sideload_image($imagenes[0], $post_id, null, 'id'); if (!is_wp_error($thumb_id)) { set_post_thumbnail($post_id, $thumb_id); } return "Post creado correctamente (Borrador). ID: ".$post_id; } E-Kart.com.ar | La Revista Electrónica del Karting en Argentina – Página 93

JI. ALESSI – ARGENTNO: Importante triunfo en Mendoza

Con gran solidez y estrategia, Juan Ignacio Alessi alcanzó la victoria en la Final del Evento…

JM. DAVIO – ARGENTNO: Un recargo lo bajó del podio en Mendoza

Juan Martín Davio fue protagonista de principio a fin en el Evento #2 del Argentino de…

G.DE LUCCA – ARGENTNO: Redondeó una gran final en Mendoza

Gabriel De Lucca se sobrepuso a un sábado complicado en Mendoza y cerró el fin de…

ARGENTINO: Sábado cargado en San Martín

Con clasificaciones, mangas y super heats, la segunda fecha del Campeonato Argentino de Karting sigue tomando…

ARGENTINO: Viernes de entrenamientos en Mendoza

Finalizaron los entrenamientos en el Kartódromo de San Martín y ya se perfilan los protagonistas del…

CENTRO BONAERENSE: Otra vez, la lluvia

El Karting del Centro Bonaerense volvió a postergar una fecha por mal clima y ya tiene…

PROKART METROPOLITANO: Nuevo calendario para 2025

El Prokart Metropolitano reprogramó su campeonato 2025, que ahora comenzará el 22 de junio en el…

RIOJANO: Se viene la segunda fecha

El Karting & Motard La Rioja 2025 ya tiene calendario confirmado para su segunda presentación del…

HONDA CUP / ICSERIES: Nuevo calendario

La organización de la Honda Cup y la ICSeries Argentina confirmó cambios en su cronograma original.…

ARGENTINO: Llega una nueva batalla

El Campeonato Argentino de Karting se traslada a Mendoza para disputar su segunda fecha. La actividad…

CORDOBES ASFALTO: Cumplió con su tercera fecha en Río Cuarto

Con una gran convocatoria de pilotos y definiciones vibrantes, el karting cordobés vivió un nuevo capítulo…

FUEGUINO: Rodari, Gómez y Bonafede brillaron en el nuevo trazado del “Gustavo Orione”

En un fin de semana histórico para el karting provincial fueguino, se disputó la tercera fecha…