Support

Account

Home Forums General Issues Changing Field Name Question Reply To: Changing Field Name Question

  • When updating a field name from ‘old_name’ to ‘new_name’ I used the following SQL commands:

    
    UPDATE wp_postmeta
    SET meta_key='new_name'
    where meta_key='old_name';
    
    UPDATE wordpress.wp_postmeta
    SET meta_key='_new_name'
    where meta_key='_old_name';