I just did a Blogger to WordPress import and for some reason, there is a ">" at the beginning of every single Post title and post content.
Is there a database query I can run to remove the ">" at the beginning of post titles?
I just did a Blogger to WordPress import and for some reason, there is a ">" at the beginning of every single Post title and post content.
Is there a database query I can run to remove the ">" at the beginning of post titles?
Just in case anyone needs the answer, access your database via phpMyAdmin and use:
UPDATE wp_posts
SET post_title =
TRIM(LEADING '>' FROM post_title);
make sure you add backticks around wp_posts and post_title
You must log in to post.