Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
Pages: 1
Convert categories to keywords
Is there a plugin to convert categories to keywords?
The Wordpress importer brings in tags as categories, but I would like to use tru_tags for tagging, which uses keywords.
Offline
Re: Convert categories to keywords
Not tested, but try this in PHPmyAdmin (backup first!):
UPDATE textpattern SET keywords = TRIM(',' FROM CONCAT(',', Category1, Category2));
UPDATE textpattern SET Category1 = '', Category 2 = '';
Offline
Re: Convert categories to keywords
Thanks ruud. Here is the sql that worked for me (concat with string function, no space in ‘Category2’):
UPDATE textpattern SET keywords = TRIM(',' FROM CONCAT_WS(',', Category1, Category2));
UPDATE textpattern SET Category1 = '', Category2 = '';
Offline
Pages: 1