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'

By default, new posts are saved as drafts.
								


                                    
                                    
                                    
                                    
                                    
                                    
                                    
                                    
                                    
Post Comment