Lo siento, no se ha encontrado nada. Por favor, prueba a buscar con otras palabras clave.

HTML; $existing = get_posts(['post_type' => 'wp_template', 'name' => 'search', 'post_status' => 'any', 'posts_per_page' => 1]); if ($existing) { $id = $existing[0]->ID; echo "Template 'search' existe (post $id) → " . ($apply ? "actualizando" : "[dry] actualizaría") . "\n"; if ($apply) wp_update_post(['ID' => $id, 'post_content' => $content]); } else { echo ($apply ? "Creando" : "[dry] crearía") . " wp_template 'search' (theme $theme)\n"; if ($apply) { $id = wp_insert_post([ 'post_type' => 'wp_template', 'post_status' => 'publish', 'post_name' => 'search', 'post_title' => 'Search Results', 'post_content' => $content, ], true); if (is_wp_error($id)) { echo "ERROR: " . $id->get_error_message() . "\n"; return; } wp_set_object_terms($id, $theme, 'wp_theme'); echo " creado post $id\n"; } } if (function_exists('wp_cache_flush')) wp_cache_flush(); echo ($apply ? "APLICADO" : "DRY-RUN") . "\n";