Code-Snippets-Functions/Execute a function on a child site/Autoptimize/flush-shortpixel-cdn.txt

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 );
}