• Hi!

    Does anyone know how to run an SQL query in order to export only the tags from the database table of one WordPress install and import the tags into the database table of another WordPress install?

    Basically, what i am asking is to export, then import only the tags.

    Thanks!

Viewing 1 replies (of 1 total)
  • Thread Starter Tokant

    (@tokant)

    i know how to select the post_tags:

    SELECT *
    FROM wp_terms wt
    INNER JOIN wp_term_taxonomy wtt ON wt.term_id = wtt.term_id
    WHERE wtt.taxonomy = 'post_tag'
    AND wtt.count >1
    LIMIT 0 , 500

    But how do i export them and import them correctly?

    To make it easier, i would like to add that the two tables run on the same database.

Viewing 1 replies (of 1 total)
  • The topic ‘Export post_tags from database table’ is closed to new replies.