Unlock Hidden Powers: Transform Your WordPress Workflow with WP-CLI Today!

Unlock Hidden Powers: Transform Your WordPress Workflow with WP-CLI Today!

For example, the following command will create a post with the title “Created Using WP-CLI.” 

wp post create --post_title="Created Using WP-CLI"

To create more than one post, you can chain multiple commands together using &&:

wp post create --post_type=page --post_status=publish --post_title='Home' && wp post create --post_type=page --post_status=publish --post_title='About' && wp post create --post_type=page --post_status=publish --post_title='Contact'
WP-CLI-chained

By default, new posts are saved as drafts. 

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38