wp_get_attachment_image() not working when trying to add width and height attributes
As written in the documentation, there are no attributes width and height in the fourth parameter of the function. What you might want to do is this: wp_get_attachment_image( $id, array( 10, 10 ) ); An alternative and recommended way is to define an image size which will lead WordPress to generate a thumbnail for this … Read more