Copy All In One SEO Pack Values to Thesis Values

This document is deprecated! The information on this page refers to a Thesis version that is now obsolete. Please visit the Thesis Docs for current documentation.

For All in One SEO versions below 1.6

Run the following SQL against the WordPress database:

insert wp_postmeta (post_id,meta_key,meta_value)
select post_id, concat('thesis_',meta_key),meta_value
from wp_postmeta where meta_key in ('title','description','keywords');

“Now when accessing historic posts the title, description and keywords are preserved. We have title, descriptions and keywords originally entered using All In One SEO Pack now being used by Thesis.

From Thesis Users Can Say Goodbye To All In One SEO Pack

For All in One SEO version 1.6 or higher

Run the following SQL against the WordPress database:

insert wp_postmeta (post_id,meta_key,meta_value)
select post_id, concat('thesis_', substring(meta_key,10)), meta_value
from wp_postmeta where meta_key in ('_aioseop_title','_aioseop_description','_aioseop_keywords');

From Thesis Users : How To Remove All In One SEO Pack

IMPORTANT: Always remember to make a backup of your database before executing SQL commands, in the event that something goes wrong!