Step-by-step guide

Choose your setup and follow the steps to build and install your plugin.

WordPress Playground
  • No installation needed
  • Works in any browser (best in Chrome or Edge)
  • Ready in 30 seconds
  • Everything disappears when you close the tab

Choose this if you skipped the preparation, don't want to install anything, or just want to try it out quickly.

LocalWP
  • WordPress runs locally on your laptop
  • Works on Mac, Windows, and Linux
  • Your files and plugins are saved for real
  • Requires installation (~10 min, see preparation page)

Choose this if you completed the preparation and want to keep your plugin after the workshop.

  1. Open WordPress Playground

    Go to playground.wordpress.net in Chrome or Edge. WordPress loads in a few seconds — you'll see the admin dashboard.

    Important: everything you create disappears when you close the tab. Keep this tab open until you're done.
    WordPress Playground with the WordPress admin dashboard loaded and ready to use
  2. Choose your plugin idea

    Not sure what to build? Browse the plugin ideas for inspiration, or pick one from the prompts page — those prompts are already written for you.

    Keep it simple. One feature that works beats three features that don't.
  3. Write your prompt and generate the code

    Open your AI tool (ChatGPT, Claude, Le Chat, etc.) in a new tab. Use the prompt template from the preparation page, fill in your plugin idea, and send it.

    You'll get PHP code back — that's your plugin. Copy all of it.

    AI tool showing generated PHP plugin code in the response
  4. Install your plugin

    Choose one of the two methods:

    Easiest Option A — Plugin Editor (no file needed)
    1. In your WordPress admin, go to Plugins → Plugin Editor
    2. In the dropdown (top right), select Hello Dolly
    3. Select all the existing code and delete it
    4. Paste your generated PHP code
    5. Click "Update File"
    WordPress Plugin Editor with generated PHP code pasted, Hello Dolly selected in the dropdown
    If available Option B — Upload a zip (if your AI created one)

    Some AI tools generate a downloadable zip file. If yours did:

    1. Go to Plugins → Add New → Upload Plugin
    2. Choose the zip from your downloads folder
    3. Click "Install Now"
    WordPress Add New Plugin screen with the Upload Plugin option visible
  5. Activate your plugin

    Go to Plugins. Find your plugin — it shows the name you gave it in the plugin header — and click "Activate".

    WordPress plugins list showing the newly installed plugin with an Activate button
  6. Test your plugin

    Click "Visit Site" at the top of the admin and navigate to a post or page. Does your plugin do what you expected?

    It works! Now try to improve it — ask the AI to change the styling, add an option, or fix an edge case.
    WordPress site frontend showing the plugin output on a blog post
  7. Iterate

    Something not working, or want to improve it? Go back to your AI tool and be specific about the problem:

    • "The plugin is activated but nothing appears. Here is the code: [paste]"
    • "PHP error: [paste error message]. Can you fix this?"
    • "It works — can you make the text gray and slightly smaller?"

    Copy the new code, go back to the Plugin Editor, replace the old code and save again.

    This is the real skill: not writing code, but knowing how to describe a problem and steer the AI toward a solution.