mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-04 12:22:24 +08:00
4 lines
179 B
Text
4 lines
179 B
Text
function wpseo_cdn_filter( $uri ) {
|
|
return str_replace( 'http://example.com', 'http://cdn.example.com', $uri );
|
|
}
|
|
add_filter( 'wpseo_xml_sitemap_img_src', 'wpseo_cdn_filter' );
|