Install
openclaw skills install wordpress-wp-cli-adminOperate WordPress installs through WP-CLI for inspection, core maintenance, plugin and theme management, users, options, content, media, cron, database tasks...
openclaw skills install wordpress-wp-cli-adminUse this skill when a WordPress task belongs in wp, not /wp-json.
The point of this skill is not to memorize every command. The point is to get to the right command family, attach the right global flags, inspect the target install first, and avoid reckless write operations.
wp--url mattersStart with:
scripts/inspect-install.sh --path /srv/www/site
scripts/inspect-install.sh --path /srv/www/site --url https://example.com
This checks that wp exists, confirms the path looks like a WordPress install, and prints useful status for core, URLs, plugins, and themes.
If you need the live command tree:
scripts/list-commands.sh
scripts/list-commands.sh --group plugin
Read references/command-families.md.
Default mapping:
coreplugin, theme, languagepost, page, comment, term, category, taguser, role, cap, super-adminoption, transient, cron, rewrite, cachedb, search-replacesite, network, super-adminRead references/global-flags-and-safety.md.
Common flags:
--path=<path>--url=<url>--user=<login>--ssh=<target>--http=<url>--skip-plugins--skip-themes--debug--quiet--format=jsonExamples:
wp plugin list --format=table
wp theme list --format=table
wp option get home
wp core version
wp cron event list
Only then move to write operations such as plugin update, search-replace, option update, or db import.
Before destructive work:
search-replace --dry-run when availablescripts/inspect-install.sh: inspect a target WordPress path with WP-CLIscripts/list-commands.sh: print wp help or wp help <group> for live command discoveryreferences/command-families.md: command family cheat sheet for common WordPress admin tasksreferences/global-flags-and-safety.md: global arg patterns, remote execution, and destructive-operation rules