diff --git a/assets/pasted-20260122-144044-c9c598ec.png b/assets/pasted-20260122-144044-c9c598ec.png new file mode 100644 index 0000000..e5dcc6d Binary files /dev/null and b/assets/pasted-20260122-144044-c9c598ec.png differ diff --git a/includes/pexels.php b/includes/pexels.php new file mode 100644 index 0000000..0c04a85 --- /dev/null +++ b/includes/pexels.php @@ -0,0 +1,25 @@ + 0 ? $k : 'Vc99rnmOhHhJAbgGQoKLZtsaIVfkeownoQNbTj78VemUjKh08ZYRbf18'; +} +function pexels_get($url) { + $ch = curl_init(); + curl_setopt_array($ch, [ + CURLOPT_URL => $url, + CURLOPT_RETURNTRANSFER => true, + CURLOPT_HTTPHEADER => [ 'Authorization: '. pexels_key() ], + CURLOPT_TIMEOUT => 15, + ]); + $resp = curl_exec($ch); + $code = curl_getinfo($ch, CURLINFO_HTTP_CODE); + curl_close($ch); + if ($code >= 200 && $code < 300 && $resp) return json_decode($resp, true); + return null; +} +function download_to($srcUrl, $destPath) { + $data = file_get_contents($srcUrl); + if ($data === false) return false; + if (!is_dir(dirname($destPath))) mkdir(dirname($destPath), 0775, true); + return file_put_contents($destPath, $data) !== false; +} diff --git a/wp-content/uploads/2026/01/pexels-photo-12670693.jpeg b/wp-content/uploads/2026/01/pexels-photo-12670693.jpeg new file mode 100644 index 0000000..a17a9b7 Binary files /dev/null and b/wp-content/uploads/2026/01/pexels-photo-12670693.jpeg differ diff --git a/wp-content/uploads/2026/01/pexels-photo-139038.jpeg b/wp-content/uploads/2026/01/pexels-photo-139038.jpeg new file mode 100644 index 0000000..ea210f6 Binary files /dev/null and b/wp-content/uploads/2026/01/pexels-photo-139038.jpeg differ diff --git a/wp-content/uploads/2026/01/pexels-photo-33513532.jpeg b/wp-content/uploads/2026/01/pexels-photo-33513532.jpeg new file mode 100644 index 0000000..c7e2f03 Binary files /dev/null and b/wp-content/uploads/2026/01/pexels-photo-33513532.jpeg differ diff --git a/wp-content/uploads/pexels-12670693.jpg b/wp-content/uploads/pexels-12670693.jpg new file mode 100644 index 0000000..a17a9b7 Binary files /dev/null and b/wp-content/uploads/pexels-12670693.jpg differ diff --git a/wp-content/uploads/pexels-139038.jpg b/wp-content/uploads/pexels-139038.jpg new file mode 100644 index 0000000..ea210f6 Binary files /dev/null and b/wp-content/uploads/pexels-139038.jpg differ diff --git a/wp-content/uploads/pexels-33513532.jpg b/wp-content/uploads/pexels-33513532.jpg new file mode 100644 index 0000000..c7e2f03 Binary files /dev/null and b/wp-content/uploads/pexels-33513532.jpg differ