šÆ Plugin Management
List all plugins:
wp plugin list
Install and activate a plugin:
wp plugin install plugin-name –activate
Deactivate a plugin:
wp plugin deactivate plugin-name
Update all plugins:
wp plugin update –all
šļø Theme Management
List all themes:
wp theme list
Install and activate a theme:
wp theme install theme-name –activate
Delete a theme:
wp theme delete theme-name
š ļø Database Operations
Backup your database:
wp db export backup.sql
Import a database:
wp db import backup.sql
Optimize the database:
wp db optimize
⨠Content Management
List all posts:
wp post list
Create a new post:
wp post create –post_title=’My New Post’ –post_status=publish
Delete a post:
wp post delete post_id
š User Management
List all users:
wp user list
Create a new user:
wp user create username email@example.com –role=author
Update a user’s password:
wp user update username –user_pass=NewPassword
ā” Site Optimization
Clear cache:
wp cache flush
Regenerate thumbnails:
wp media regenerate
Flush rewrite rules:
wp rewrite flush
