Skip to content

Instantly share code, notes, and snippets.

@fernandovbs
Last active October 31, 2022 22:15
Show Gist options
  • Save fernandovbs/e8595e3724c6ed38b800eea49a1f290d to your computer and use it in GitHub Desktop.
Save fernandovbs/e8595e3724c6ed38b800eea49a1f290d to your computer and use it in GitHub Desktop.
Update post type for post from specific category
#Update post type for posts from category
wp post list --category_name=artigos --field=ID | xargs wp post update --post_type=blog
#Count number of posts from all post types (except posts with other status like inherit)
wp post list --post_type=$(wp post-type list --field=name --format=json) --post_status=publish,trash,draft --format=count
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment