Skip to content

Instantly share code, notes, and snippets.

@petrozavodsky
Last active July 1, 2017 18:31
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save petrozavodsky/b42f649139c7675aaf350a499393add3 to your computer and use it in GitHub Desktop.
Save petrozavodsky/b42f649139c7675aaf350a499393add3 to your computer and use it in GitHub Desktop.
<?php
/*
Plugin Name: Yoast SEO twicks
Plugin URI: http://alkoweb.ru/
Version: 1.0
Author: petrozavodsky
Author URI: http://alkoweb.ru
*/
function yoast_clear_sitemap( $output, $url ) {
$output = preg_replace("'<image:image[^>]*?>.*?</image:image>'si", '', $output);
return $output;
}
add_filter( 'wpseo_sitemap_url','yoast_clear_sitemap', 10 , 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment