Advertisement
Guest User

Untitled

a guest
Aug 21st, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. add_filter( 'post_thumbnail_html', 'remove_thumbnail_dimensions', 10 );
  2. add_filter( 'image_send_to_editor', 'remove_thumbnail_dimensions', 10 );
  3. // Removes attached image sizes as well
  4. add_filter( 'the_content', 'remove_thumbnail_dimensions', 10 );
  5. function remove_thumbnail_dimensions( $html ) {
  6. $html = preg_replace( '/(width|height)=\"\d*\"\s/', "", $html );
  7. return $html;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement