mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-28 11:22:21 +08:00
4 lines
223 B
Text
4 lines
223 B
Text
add_filter('autoptimize_html_after_minify','change_shortpixel_client', 11, 1);
|
|
function change_shortpixel_client( $HtmlIn ) {
|
|
return str_replace( 'cdn.shortpixel.ai/client/', 'cdn.shortpixel.ai/client2/', $HtmlIn );
|
|
}
|