• Hi there!

    I am facing quite the problem here:

    i need to export cpt from a wordpress installation with about 6000+ posts and 100 categories to another wordpress installation and import those posts & categories to another cpt.

    I managed on my staging site to transfer all of this including all the category selection with “wp all export” & “wp all import” which is great. the problem i am still facing is that on the old installation your plugin is being used to redirect quite a lot of those posts and i don’t know how to transfer that. do you maybe have an idea for me?

    Theese are my ideas:
    1. manually do it via a virtual assistant (a lot of work though). but: where is a list of the posts where your plugin is in use? i only see it in the post-list and inside a single post but i cannot find a way to display only those posts where your plugin is active so I don’t really know how to proceed here.
    2. a database-move? but i wouldn’t have the knowledge on the sql code.

    Any ideas/help from your side?

    Looking forward to your reply and best regards

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter braino

    (@braino)

    You know, the “least” thing I would know is at least a way to display only the posts where “page links to” is activated so i can have a virual assistant move that to htaccess and things are done but I cannot seem to find a way for that.

    The data for this plugin is stored in the wp_postmeta table with meta_key value of ‘_links_to’ and the meta_value of whatever URL its redirecting you.

    Hopefully that’s enough information for you to solve you problem in one way or another (I’m not versed in the specific export/import plugin you’re talking about to know for sure.)

    It can help you do the ‘least’ thing pretty easily for sure:
    SELECT * from wp_postmeta where meta_key = ‘_links_to’;

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘wp all export/import & your plugin?’ is closed to new replies.