Guest User

Untitled

a guest
Jul 15th, 2018
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. /**
  2. * Removes inline width and height attributes for images. Thanks to
  3. * @boonebgorges for help with this!
  4. **/
  5. function clioweb_remove_inline_sizes($html) {
  6. $pattern = '/(\sheight|\swidth)="(.*?)"/';
  7. $html = preg_replace($pattern, '', $html);
  8. return $html;
  9. }
  10.  
  11. add_filter( 'get_image_tag', 'clioweb_remove_inline_sizes', 10, 1 );
Add Comment
Please, Sign In to add comment