• Hi,
    Is it possible to bulk import/export custom sort values per post per category via CSV?
    For example I have 100 posts and each post appears in 5 different categories, I would like to assign a sort rank per post in each category and then be to upload that in bulk.

    Thanks

Viewing 1 replies (of 1 total)
  • Plugin Author Aurovrata Venet

    (@aurovrata)

    The rank is stored in the wp_post_meta table using the meta_key value ‘_rpwc2’,

    meta_id – the rank (the values are organised so as to reflect the same order)
    post_id – the post ID
    meta_key – ‘_rpwc2’
    meta_value – the term ID

    so you would need to extract all the meta keys for a given term ID in the order in which they are listed in the table, this will give you the rank of post IDs.

    These can be re-inserted into your live server.

Viewing 1 replies (of 1 total)

The topic ‘Bulk Import/Export’ is closed to new replies.