Skip to content

Instantly share code, notes, and snippets.

@jprieton
Last active August 29, 2015 13:57
Show Gist options
  • Save jprieton/9809052 to your computer and use it in GitHub Desktop.
Save jprieton/9809052 to your computer and use it in GitHub Desktop.
Cambio masivo de post_type
UPDATE wp_posts p
LEFT JOIN wp_postmeta pm ON p.ID=pm.post_id
SET
p.post_type='new_post_type',
p.guid=REPLACE(p.guid, 'old_post_type', 'new_post_type')
WHERE
p.post_type='old_post_type'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment