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 210

T.OJEDA – IAME SERIES ARGENTINA: Redondeó un buen trabajo en Buenos Aires

Thomas Ojeda se sostiene en el Top 7 de la Old School Junior. El piloto de…

JM.FORESI – IAME SERIES ARGENTINA: Positivo trabajo en Buenos Aires

Juan Manuel Foresi demostró su habilidad en el kartódromo porteño. El piloto de Gral. Villegas destacó…

R.DE SOSA – IAME SERIES ARGENTINA: Volvió a IAME con suerte dispar

Convocado por IAME Series Argentina, Ricardo De Sosa se midió en la clase Old Master. El…

B.IRAZU – IAME SERIES ARGENTINA: Completó un buen trabajo en Buenos Aires

Respondiendo a la convocatoria de IAME Series Argentina, Benjamín Irazu dejó marcado su paso en la…

ENTRERRIANO: Grandes espectáculos agitaron La Paz

Juan Manuel Wiesner, Lucas Ronconi, Franco Cecchini, Benjamín Iglesias, Enzo De Zan, Pablo Zapata, Leandro González,…

IAME SERIES ARGENTINA: Entretenido espectáculo en el Coliseo Porteño

Ganaron Perchivatti, Gorlero Pizarro, Saa, Fuca, Elustondo, Rossotti Camporino, Díaz y Consolini, la segunda de la…

LMK: Se alistan para la segunda

Caseros, Entre Ríos. Caseros (ER) se prepara para recibir la segunda fecha del Campeonato “La Morena…

IAME SERIES ARGENTINA: Resultados sabatinos en Buenos Aires

C.A.B.A.. Bajo un espléndido sol y con la adrenalina en aumento, la segunda fecha de la…

PROKART CALETENSE: El “Fernando Lacrouts” recibe la segunda

Caleta Olivia, Santa Cruz. El próximo fin de semana, los días 20 y 21 de abril,…

CSK: Este sábado la tercera en Ramona

Rafaela, Santa Fe. Ante las amenazas de precipitaciones para el próximo domingo, el Certamen Santafesino Karting…

CHAQUEÑO TIERRA: Se viene la segunda

Santa Sylvina, Chaco. El próximo fin de semana, específicamente el sábado 20 y domingo 21 de…

PATAGONICO: Se reprograma la fecha

Villa Regina, Río Negro. Si bien se desarrollaron todos los trabajos posibles, a horas de cesar…