| Server IP : 202.61.199.114 / Your IP : 216.73.217.139 Web Server : nginx/1.22.1 System : Linux de.arni-solutions.de 6.1.0-49-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64 User : web20 ( 1018) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/3951572/root/tmp/ |
Upload File : |
<?php
require '/var/www/clients/client2/web20/web/wp-load.php';
$post = get_post(1300);
$content = $post->post_content;
// Replace Pixabay CDN URLs with local WordPress URLs
$replacements = array(
// Amsterdam
'src="https://cdn.pixabay.com/photo/2024/12/28/18/22/amsterdam-9296270_1280.jpg"' =>
'src="https://www.drogentest-online.de/wp-content/uploads/2026/06/amsterdam-grachten.jpg"',
// Barcelona
'src="https://cdn.pixabay.com/photo/2017/10/07/01/56/barcelona-2825095_1280.jpg"' =>
'src="https://www.drogentest-online.de/wp-content/uploads/2026/06/barcelona-cityscape.jpg"',
// Lisbon/Portugal
'src="https://cdn.pixabay.com/photo/2020/03/17/21/44/tram-4941785_1280.jpg"' =>
'src="https://www.drogentest-online.de/wp-content/uploads/2026/06/lissabon-tram.jpg"',
// Malta
'src="https://cdn.pixabay.com/photo/2017/07/10/19/27/malta-2491088_1280.jpg"' =>
'src="https://www.drogentest-online.de/wp-content/uploads/2026/06/valletta-malta.jpg"',
);
// Also update figcaptions with correct Unsplash credits
$caption_replacements = array(
'Amsterdam: Die Grachtenstadt bleibt Europas Nummer eins für Cannabis-Touristen. Bild: Pixabay' =>
'Amsterdam: Die Grachtenstadt bleibt Europas Nummer eins für Cannabis-Touristen. Foto: Tobias Reich / <a href="https://unsplash.com/photos/KNSvGgGitnM" rel="nofollow noopener" target="_blank">Unsplash</a>',
'Barcelona: Hunderte Cannabis Social Clubs machen die Stadt zur CSC-Hauptstadt Europas. Bild: Pixabay' =>
'Barcelona: Hunderte Cannabis Social Clubs machen die Stadt zur CSC-Hauptstadt Europas. Foto: Davit Margaryan / <a href="https://unsplash.com/photos/mfnIHAwlBCw" rel="nofollow noopener" target="_blank">Unsplash</a>',
'Lissabon: Portugals Entkriminalisierung aller Drogen seit 2001 gilt weltweit als Vorbild. Bild: Pixabay' =>
'Lissabon: Portugals Entkriminalisierung aller Drogen seit 2001 gilt weltweit als Vorbild. Foto: Sarah Markstaller / <a href="https://unsplash.com/photos/r_ShROkN3E8" rel="nofollow noopener" target="_blank">Unsplash</a>',
'Valletta: Malta war das erste EU-Land, das Cannabis für den Freizeitkonsum legalisierte. Bild: Pixabay' =>
'Valletta: Malta war das erste EU-Land, das Cannabis für den Freizeitkonsum legalisierte. Foto: Sarolta Balog-Major / <a href="https://unsplash.com/photos/FKpmcvYRZBU" rel="nofollow noopener" target="_blank">Unsplash</a>',
);
foreach ($replacements as $old => $new) {
$content = str_replace($old, $new, $content);
}
foreach ($caption_replacements as $old => $new) {
$content = str_replace($old, $new, $content);
}
// Update the post
wp_update_post(array(
'ID' => 1300,
'post_content' => $content,
));
echo "Post content updated with local image URLs and Unsplash credits.\n";
// Verify all images are now local
preg_match_all('/src="([^"]*)"/', $content, $matches);
echo "\nAlle Bild-URLs im Artikel:\n";
foreach ($matches[1] as $url) {
$is_local = strpos($url, 'drogentest-online.de') !== false;
echo ($is_local ? '[OK] ' : '[EXT] ') . $url . "\n";
}
// Verify credits
preg_match_all('/<figcaption[^>]*>(.*?)<\/figcaption>/s', $content, $captions);
echo "\nBild-Credits:\n";
foreach ($captions[1] as $cap) {
echo " " . strip_tags($cap) . "\n";
}