In Wordpress 4.4 images get automatically a srcset
attribute. My problem with this was the following (I solved it while I was writing this question, see my answer below):
- in order to transit everything to https, I replaced all the
src="http://...
references in the posts table bysrc="https://...
(I changed it later tosrc="//...
for supporting both protocols); - the images on all the posts get the correct URL in the
src
attribute; - however in all the images that get the
srcset
attribute the URLs in it are always withhttp://
references.
Why does this happen? Why these URLs don't get my newly updated https://
beginnings?