Last active
December 18, 2017 10:05
-
-
Save zgordon/83b65560b8b06ca48f197abc5ab02ce1 to your computer and use it in GitHub Desktop.
Suggested block architecture for working WordPress themes (without webpack). See my block architecture for themes with webpack.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/theme-root | |
/blocks | |
/block-name | |
editor.css // Option for editor only styles | |
index.js // Main block JS file | |
index.php // Enqueues the block JS and CSS | |
style.css // Frontend and editor styles | |
/another-block-name | |
editor.css | |
index.js | |
index.php | |
style.css | |
functions.php | |
style.css |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment