mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-31 06:52:50 +08:00
7 lines
320 B
Bash
Executable file
7 lines
320 B
Bash
Executable file
#!/bin/bash
|
|
## Description: Run WordPress CLI inside the web container. DDEV core only provides this for the "wordpress" project type for some reason
|
|
## Usage: wp [flags] [args]
|
|
## Example: "ddev wp core version" or "ddev wp plugin install user-switching --activate"
|
|
## ProjectTypes: php
|
|
|
|
wp "$@" --path=.ddev/wordpress
|