Skip to content

Instantly share code, notes, and snippets.

@BenBroide
Last active April 19, 2021 14:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save BenBroide/e44539b960e5fdc0de480e58d464e103 to your computer and use it in GitHub Desktop.
Save BenBroide/e44539b960e5fdc0de480e58d464e103 to your computer and use it in GitHub Desktop.
WordPress Cli create plugin + Create React App
cd /your/instllation/path/wp-content/plugins
// Create custom plugin
wp scaffold plugin wp-create-react-app-concept --activate --skip-tests
cd wp-create-react-app-concept
// We need only react-plugin.php for our demo - deleting all other files  
ls | grep -v wp-create-react-app-concept.php | xargs rm
// Create React App
npx create-react-app react-app
cd react-app
// Build the app
yarn build
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment