Home > Enterprise >  How i can clone wordpress site urls only to new one?
How i can clone wordpress site urls only to new one?

Time:01-02

how to copy wordpress site structure to new wordpress site , i need to clone all pages urls with blank content and no media files to the new one.

All plugins for migration copy sites urls with content

CodePudding user response:

You can setup first your copy site and after setup you clone site you got to you post table and the execute the below query

UPDATE [table_name] SET [column_name] = NULL;

After you page content will blank and then you can delete images/other files which is numbered or related that.

  • Related