samikeijonen / uuups
A WordPress starter theme.
Installs: 30
Dependents: 0
Suggesters: 0
Security: 0
Stars: 46
Watchers: 6
Forks: 3
Open Issues: 24
Language:CSS
Type:wordpress-theme
Requires
- php: >=5.6
- composer/installers: ~1.0
- justintadlock/hybrid-core: ^5.0.0
Requires (Dev)
- samikeijonen/phpcs-composer: dev-master
- dev-master
- 1.1.0
- 1.0.0
- 1.0.0-beta2
- 1.0.0-beta1
- dev-dependabot/npm_and_yarn/decode-uri-component-0.2.2
- dev-dependabot/npm_and_yarn/engine.io-and-browser-sync-6.2.1
- dev-dependabot/npm_and_yarn/loader-utils-and-loader-utils-and-webpack-cli-1.4.2
- dev-dependabot/npm_and_yarn/terser-4.8.1
- dev-dependabot/npm_and_yarn/minimist-1.2.6
- dev-dependabot/npm_and_yarn/ajv-6.12.6
- dev-dependabot/npm_and_yarn/path-parse-1.0.7
- dev-dependabot/npm_and_yarn/postcss-7.0.36
- dev-dependabot/npm_and_yarn/browserslist-4.16.6
- dev-dependabot/npm_and_yarn/hosted-git-info-2.8.9
- dev-dependabot/npm_and_yarn/lodash-4.17.21
- dev-dependabot/npm_and_yarn/ssri-6.0.2
- dev-dependabot/npm_and_yarn/y18n-3.2.2
- dev-dependabot/npm_and_yarn/elliptic-6.5.4
- dev-dependabot/npm_and_yarn/ini-1.3.8
- dev-dependabot/npm_and_yarn/decompress-4.2.1
- dev-dev
- dev-feature/local-fonts
- dev-update/stylelint
- dev-feature/editor-js
- dev-feature/zip
- dev-feature/config-variables
- dev-demo
- dev-webpack
- dev-webpack-settings
- dev-fix/travis
- dev-feature/nested
- dev-feature/postcss
- dev-fix/phpcs
This package is auto-updated.
Last update: 2025-03-29 00:44:17 UTC
README
Uuups – experimental WordPress Theme
Uuups is an experiment how to bring your theme to the next level.
- The theme uses modern PHP, JS, CSS, and other tools.
- The theme also attempts to stick with WP standards so that it doesn't feel too foreign.
Version from Mythic
This is my playground from Justin Tadlock's starter theme called Mythic. Most of the code is the same but I have small experiments here and there.
Documentation
Read documentation from Mythic Wiki.
Demo
Demo can be seen in Foxland site.
My wishlist
I have hopes and dreams for the starter theme:
- Accessibility ready out of the box.
- Clean semantic HTML without lots of extra DIVs
- Scalable, modular CSS/SASS architecture. It should guide developers how they write their CSS.
- Ready for Gutenberg and a maximum WYSIWYG experience.
- ES6 for JavaScript.
- Gulp, Webpack, or npm scripts for automated tasks like - compiling assets.
- optimising images and SVGs.
- CSS, JS, and PHPCS linting.
- SVG system.
- Being design system ready.
My workflow
I'll work on dev
branch where I keep un-minified CSS, JS, SVGs etc. In master
all assets are cleaned and compile when running npm run build
.
In other words master
branch is ready for production.
Accessibility testing
Pa11y runs your code against HTML CodeSniffer. Check documentation from pa11y
site.
On the command line test any local or live URL:
pa11y http://example.com/
I recommend also aXe browser add-on or aXe-CLI.
More info about Frontend checks for web accessibility.
CSS structure
CSS structure is probably one of the biggest aspects of the front-end and theming. It should have scalable and modular architecture.
Styles are written in resources/css
folder.
There are two separate stylesheets
which are automatically compiled to dist/css
:
style.scss
– Main stylesheet for the theme.editor.scss
– Stylesheet only for the block editor (Gutenberg).
Main stylesheet
Main stylesheet style.scss
follows ITCSS approach and BEM naming convention.
The main point of ITCSS is that it separates your CSS codebase to several sections (layers). It guides you to write CSS from low-specificity selectors to more specific ones.
It also plays nicely with the new editor (Gutenberg) because block styles can be one of the layers.
We should write separate documentation about SASS and CSS, it's that important.
Styles for the editor
editor.scss
tries to put all the necessary styles
to the new editor without re-writing front-end styles.
Note a little trick where we prefix all the styles
with class editor-styles-wrapper
using postcss-editor-styles
plugin.
New editor (Gutenberg) support
At the moment support for new editor means these things to me:
- Add support for
editor-color-palette
to match theme colors. - Add support for
editor-font-sizes
to match theme font sizes. - Add support for
align-wide
blocks. - Dequeue Core block styles:
- This is because I don't want to overwrite and add too spesific rules to main stylesheet.
- Core blocks have their own CSS layer as mentioned before. It can be found in
recources/css/blocks
.
- Get maximum WYSIWYG experience in the editor by
enqueueing block related styles using
enqueue_block_editor_assets
hook.
See previous chapter styles for the editor.
Coding standards and linting
Theme mostly follows WordPress coding standards.
There is pre-commit
hook which runs PHP, Style, and JavaScript linting before new commits can be pushed to repo.
For example if there are changes in CSS files, it runs npm run lint:css
before the commit.
You can use --no-verify
flag to bypass linting check:
git commit --no-verify -m "Your commit message."
All lints can be run by command npm run lint
. Or use any of the following lint commands.
PHP linting
NPM task npm run lint:php
checks PHP files using WordPress coding standars (WPCS). In .phpcs.xml.dist
there is custom PHP ruleset Foxland-Default
which extends WPCS
. This is loaded via composer package.
Style linting
NPM task npm run lint:css
checks CSS files using stylelint.
File .stylelintrc
is the configuration file for stylelint.
I also recommend installing stylelint extension to your IDE, for example vscode-stylelint.
JavaScript linting
NPM task npm lint:js
checks JS files using ESLint.
File .eslintrc.js
is the configuration file for ESLint. And .eslintignore
file for what files to ignore from linting.
I also recommend installing ESLint extension to your IDE, for example VS Code ESLint extension.
Run your code automatically through Travis CI
When you commit changes in Github, let Travis CI run and test your code.
File .travis.yml
is the configuration file for setting up Travis.
Editorconfig
Theme has an .editorconfig
file that sets your code editor settings accordingly. Download the extension to your editor. The settings will automatically be applied when you edit code when you have the extension.
New version
Generate .zip
file using command:
npm run release -- --version={version-number}
For example:
npm run release -- --version=1.0.0
This will generate zip file releases/uuups-1.0.0.zip
.
SVG system
All the main SVG related functions can be found in the app/functions-svg.php
file. It’s well-documented in the code, but here’s a summary:
- Add SVG icons in
resources/svg
folder.npm run dev
ornpm run build
copies these SVG files indist/svg
folder.- In the same cleans them up.
- Adds attributes and classes for using these icons as decorative only.
Uuups\get_svg()
function returns inline SVG icon markup by default.- For example
Uuups\get_svg( [ 'icon' => 'folder-open' ]
. - SVG icons are automatically used in Social links menu.
If the SVG is not decorative, add SVG markup directly in the markup.
FAQ
What about sidebars?
For old themes I probably would not try to add align-wide support if child themes can be broken.
For new themes you can definitely have "wide" and "full-width" blocks even if there is sidebar on the right or left.
Yeah but how? Using CSS :)
Other starter themes
Check out