Frage

Is there any way to import a basic, exported Wordpress content XML file and have it replace the existing content? What I'm trying to do is synch up two instances of a site (development and staging servers) and all I want to replace is the Page content. When I try to import the XML document it simply states that all the pages already exist and nothing is done. Is it possible to override that warning and replace the content of the pages with the content of the XML?

War es hilfreich?

Lösung

One option might be to export both XML files, merge them using a file merging tool like http://winmerge.org, delete all posts and replace with the merged version.

Andere Tipps

Run A Query to Delete All Staging Posts before Importing From Dev

Because menus and pages are custom post types, this will update all posts, pages, and menus to match your dev site.

  1. Delete all posts in the staging server by running a database query. Note that the code requires setting a userid. modify it if there are more users or run it more than once.

    SET @WPUSERID='1';
    -- end config
    -- Delete a,b,c 
       FROM wp_posts a 
       LEFT JOIN wp_term_relationships b 
       ON (a.ID = b.object_id)
       LEFT JOIN wp_postmeta c 
       ON (a.ID = c.post_id) 
       WHERE a.post_author = @WPUSERID;
    
  2. Import the XML file that you exported from the Dev site.

Caution: Back up your databases for both dev and staging in case you accidently get them mixed up (you think you're connected to stage for example, and you are really connected to dev when you do the delete) .

Be safe: view posts before deleting

Select * FROM wp_posts a 
LEFT JOIN wp_term_relationships b 
ON (a.ID = b.object_id)
LEFT JOIN wp_postmeta c 
ON (a.ID = c.post_id) 
WHERE a.post_author = @WPUSERID; 

In my case - I'm trying to overwrite the content two of the default pages created by sage with predefined content - the best way to overwrite the page/post content was by using the wp post update cli command.

wp post update 2 "./assets/page-content.html"

where 2 is the page ID and ./assets/page-content.html is the path to the file with the new content (you could extract the content from an exported xml if you need to).

https://developer.wordpress.org/cli/commands/post/update/

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit wordpress.stackexchange
scroll top