

Site Navigation flow — visual map of your site's navigation structure and link relationships
PIR Site Structure Mapper gives you a complete visual map of how your WordPress site is structured. It reads your theme’s templates, pages, navigation menus, and content links, then presents everything in an interactive dashboard so you can understand and manage your site architecture at a glance.
Works with three theme types:
Key features:
The full source code for this plugin is publicly available at:
https://bitbucket.org/fgauer/wp-plugin-visual-editor/
The compiled files in build/ are generated from human-readable source code included in the plugin:
src/admin/ — Admin dashboard React components and CSS (builds to build/admin.js and build/style-admin.css)src/public/ — Public-facing JS and CSS (builds to build/public.js and build/style-public.css)@wordpress/scripts — WordPress wrapper around webpack, Babel, and PostCSSTo regenerate the compiled files:
npm installnpm run buildnpm startAll JavaScript dependencies are WordPress core packages (@wordpress/element, @wordpress/api-fetch, @wordpress/components, etc.) loaded at runtime via the WordPress script dependency system. No third-party libraries are bundled into the compiled files.