A Gutenberg container block that sticks to the top or bottom of the viewport as visitors scroll. Drop any blocks inside and they follow the reader down the page - no coding required.
- PHP 7.4 or higher
- WordPress 5.8 or higher
- Node.js + npm
npm installnpm run startThe block is compiled to build/ and recompiled on every file change. Activate the plugin in WordPress and the changes are live immediately.
| Command | Description |
|---|---|
npm run start |
Start the dev build watcher |
npm run build |
Production build |
npm run dist |
Production build + plugin zip into dist/ |
npm run lint:js |
Lint JavaScript with ESLint |
npm run lint:css |
Lint SCSS with Stylelint |
npm run format |
Auto-format files |
npm run packages-update |
Update @wordpress/scripts and block dependencies |
├── src/ - block source
│ ├── block.json - block metadata and attributes
│ ├── index.js - block registration
│ ├── edit.js - editor UI and sidebar controls
│ ├── save.js - saved markup
│ ├── frontend.js - sticky logic (plain JS, no jQuery)
│ ├── editor.scss - editor-only styles
│ └── style.scss - frontend styles
├── build/ - compiled output (committed)
├── docs/ - in-plugin documentation page
├── dist/ - release zip (git-ignored)
└── wpwing-sticky-block.php - plugin entry point
npm run distThe zip is written to dist/wpwing-sticky-block.zip. It contains only distributable files - no src/, node_modules/, or dev config.