avatar
copy page from WordPress with database coming known WordPress

• To copy page with database known. For example, supposed that you used phpmyAdmin to manage data. In here, we will copy page `Home` into `Home Draft`.

select * from `wp_posts` where post_title = 'Home';

After execute the command above:

You can copy `post_content` and run the following command:

select * from `wp_posts` where post_title = 'Home Draft';

Then, you can paste `post_content` and update again.

You need to login to do this manipulation!