Skip to content

Instantly share code, notes, and snippets.

View eduard-gonzalez's full-sized avatar
🎯
Focusing

Efrain Gonzalez eduard-gonzalez

🎯
Focusing
View GitHub Profile

🔁 Cambios realizados por refactorización de parametros

Se refactorizo accountingRouter.js para incluir un nuevo parámetro dinámico en varias rutas: route/:routeId.

BASE v1/accountings


🛠️ Endpoints afectados

@eduard-gonzalez
eduard-gonzalez / functions.php
Created November 3, 2023 23:14
Save images into wordpress child theme directory from an API
function fetch_images_from_api() {
$api_url = 'YOUR_API_URL'
$response = wp_remote_get($api_url);
if (is_wp_error($response)) {
return;
}
$body = wp_remote_retrieve_body($response);