Converting Things to Lowercase
-
I was having a little problem excepting all the different capitalizations in my calender, you know when you mouse over a date and the tool tip tells you the titles of entries. So I used
UPDATE wp_posts SET post_title = LCASE(post_title);
To convert all the titles to lowercase, of course this works for uppercase (UCASE), too. Just thought someone might find this useful. Remember to back up the database before you do anything new though ??
PS. For those that don’t know, this is an SQL query no WP code was hacked. See the SQL manual.
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘Converting Things to Lowercase’ is closed to new replies.