How to remove attachments size attribute

i would like to remove the width=”512″ height=”128″ attributes on an attachments

this method is fine on images displayed in the_content :
Filter to remove image dimension attributes?

Read More

but i can’t find a way to make it work on an attachement i call outside of the_content with wp_get_attachment_image.

how can i do this ?

Related posts

Leave a Reply

1 comment

  1. wp_get_attachment_image() does not pass output through any filters. You should apply changes to output of this function or use custom function for output.