Skip to content

Instantly share code, notes, and snippets.

View iniznet's full-sized avatar
🎯
Rebuilding some sites

Yusuf Fauzan iniznet

🎯
Rebuilding some sites
View GitHub Profile
@wichaksono
wichaksono / simple-regex-cedeen.php
Last active September 17, 2022 09:57
CDN statically
<?php
/**
* Taruh di functions.php paling bawah
*/
/**
* Mengubah Semua URL image di konten menjadi berCDN
*/
function cdn_on_the_fly($content) {
$pattern = '#(\-(\d+)x(\d+))?\.((?:jpg|gif|png|webp|jpeg))#';
return preg_replace($pattern, '.$4?format=webp&quality=80&w=$2&h=$3', $content);