I am using the ImageScaler plugin for WordPress on a project, and I like what it does, but it adds a non-standards-compliant attribute to images, such as:
<img class="" src="http://www.example.com/imagescaler/generated-image.jpg" alt="Example" width="258" height="234" imagescaler="http://www.example.com/imagescaler/original-image.jpg" />
To strip imagescaler’s imagescaler attribute, add the following into your functions.php file:
add_filter('the_content', 'strip_imagescaler');
function strip_imagescaler($content) {
$content = preg_replace('/imagescaler="(.*?)".?/s','', $content);
return $content;
}
Related posts:
- Simple Taxonomies Formatting — Improve the Plugin’s Code Output
- Cars and Code – Not all that different
- Kick SEO Ass with SEO WordSpinner Plugin for WordPress
- How to tell if your WordPress Plugin or Widget is Activated in WordPress
- Admin Drop Down Menu plugin does not break WordPress 2.5 Image Uploader [updated]
Katz Web Services is a