The Solid FSE Theme for Modern WordPress Creativity
- Multiple global styles
- Full Site Editing (FSE) support
- Clean and minimal design
- Developer-friendly setup with linting and formatting tools
.
├── assets/
│ ├── fonts/
│ ├── images/
│ └── js/
├── fonts/
├── parts/
│ ├── footer.html
│ └── header.html
├── patterns/
├── templates/
├── .editorconfig
├── .gitignore
├── .nvmrc
├── .stylelintrc.json
├── LICENSE
├── README.md
├── composer.json
├── composer.lock
├── functions.php
├── package.json
├── package-lock.json
├── phpcs.xml.dist
├── style.css
└── theme.jsonThis theme comes with helpful scripts to lint and maintain clean code.
Lints all CSS files
npm run lint:cssFixes linting issues in CSS
npm run lint:css:fixLints all PHP files using Composer
npm run lint:php
Fixes PHP issues using Composer
npm run lint:php:fix
Validates the theme.json structure
npm run lint:theme
Escapes all patterns with the text domain deltra
npm run lint:patterns:fix
- WordPress 6.7 or later
- PHP 7.4+
- Node.js 20+ and npm
- Composer 2+
- Clone the repository.
- Run
npm installandcomposer install. - Develop locally using your favorite WP setup.
- Activate the theme via the WordPress admin panel.
Before committing code:
npm run lint:css
npm run lint:php
npm run lint:themeHappy Coding!