docs: Add WP-CLI helper script and comprehensive usage guide

This commit is contained in:
dwindown
2025-11-05 13:04:21 +07:00
parent 66eb4a1dce
commit 924baa8bdd
2 changed files with 337 additions and 0 deletions

10
wp-cli-helper.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
# WP-CLI Helper for Local WP
# Usage: ./wp-cli-helper.sh [wp command]
# Example: ./wp-cli-helper.sh option delete wnw_nav_tree
# Local WP WordPress path
WP_PATH="/Users/dwindown/Local Sites/woonoow/app/public"
# Run WP-CLI with correct path
wp "$@" --path="$WP_PATH"