From 1ec56ac8f7ee3c01a3126af35ac506fcd7a449a0 Mon Sep 17 00:00:00 2001 From: Fellyph Cintra Date: Mon, 10 Nov 2025 16:31:02 +0000 Subject: [PATCH] updating sidebar to add xdebug pages --- .../docs/developers/07-xdebug/01-introduction.md | 4 ++-- .../main/contributing/contributor-day-table-lead.md | 4 ++-- packages/docs/site/sidebars.js | 13 +++++++++++++ 3 files changed, 17 insertions(+), 4 deletions(-) diff --git a/packages/docs/site/docs/developers/07-xdebug/01-introduction.md b/packages/docs/site/docs/developers/07-xdebug/01-introduction.md index 63fd2775e6..f94cea49ba 100644 --- a/packages/docs/site/docs/developers/07-xdebug/01-introduction.md +++ b/packages/docs/site/docs/developers/07-xdebug/01-introduction.md @@ -1,10 +1,10 @@ --- -title: Using Xdebug with PHP WASM - Introduction +title: Debugging with Xdebug in WordPress Playground slug: /developers/xdebug/introduction description: Debug PHP code running in WebAssembly within WordPress Playground using Xdebug, Chrome DevTools, and IDE integration. --- -# Using Xdebug with PHP WASM +# Debugging with Xdebug in WordPress Playground Xdebug is a debugging extension for PHP that lets you set breakpoints, inspect variables, and step through your code. WordPress Playground includes Xdebug in its WebAssembly-compiled PHP, so you can debug WordPress code running directly in your browser or IDE. diff --git a/packages/docs/site/docs/main/contributing/contributor-day-table-lead.md b/packages/docs/site/docs/main/contributing/contributor-day-table-lead.md index 2a2c66e73a..12eec291ce 100644 --- a/packages/docs/site/docs/main/contributing/contributor-day-table-lead.md +++ b/packages/docs/site/docs/main/contributing/contributor-day-table-lead.md @@ -1,10 +1,10 @@ --- slug: /contributing/table-lead-guide -title: Table Lead Guide for Contributor Day +title: How to Lead a Contributor Day Table description: How to lead a WordPress Playground table at Contributor Day of a WordCamp. --- -# Table Lead Guide for Contributor Day +# Contributor Day Table Leadership Guide This guide helps table leads prepare for and manage a WordPress Playground contributor table at WordCamp events. diff --git a/packages/docs/site/sidebars.js b/packages/docs/site/sidebars.js index bfde015e29..b5b2ff617b 100644 --- a/packages/docs/site/sidebars.js +++ b/packages/docs/site/sidebars.js @@ -62,6 +62,7 @@ const sidebars = { 'main/contributing/coding-standards', 'main/contributing/contributor-day', 'main/contributing/contributor-badge', + 'main/contributing/contributor-day-table-lead', 'main/contributing/documentation', 'main/contributing/translations', ], @@ -140,6 +141,18 @@ const sidebars = { 'developers/local-development/php-wasm-node', ], }, + { + type: 'category', + label: 'Xdebug on Playground', + link: { + type: 'doc', + id: 'developers/xdebug/introduction', + }, + items: [ + 'developers/xdebug/introduction', + 'developers/xdebug/getting-started', + ], + }, { type: 'category', label: 'Playground APIs',