/ Published in: PHP
Remove the Attributes in - Tags in the Post/Page Content
Expand |
Embed | Plain Text
add_filter( 'post_thumbnail_html', 'remove_thumbnail_dimensions', 10 ); add_filter( 'image_send_to_editor', 'remove_thumbnail_dimensions', 10 ); function remove_thumbnail_dimensions( $html ) { return $html; }
You need to login to post a comment.
