I have imported some blog posts for a client from their old site to their new site and about 500 of those old blog posts have the title in ALL CAPS. I would like to change this to sentence case. Is there a way to do this in bulk without having to manually go into each post and change it?
Were the titles actually typed in all caps? Or do they just display on the page in all caps? If it’s just the display, then you can just adjust the CSS from text-transform:uppercase; to text-transform:capitalize;
However if they were typed in all caps, that’s going to be a nightmare. I’m sure there is probably some regex way to do it in the database, but I wouldn’t even know where to begin for something like that. Others may have simple solutions though.