How to convert custom field value to tag
Since this is a one-time task, it’s easiest to create a migration script like so. Note: It might timeout (trying to process 90k rows) depending on how much memory your server has. function my_migration_script() { global $wpdb; // Quick and dirty way to get post ids. Normally don’t use this method. $post_ids = $wpdb->get_col( “SELECT … Read more