admin管理员组

文章数量:1435859

I'm working on a wordpress theme and want to replace my shortcodes with gutenberg blocks. I'm new to working with blocks but having looked into it a bit I've decided to try and use create-guten-block as that seemed like a good starting point.

The tutorial on github mentions that you should install the blocks to the plugins directory, whereas ideally I want them to be built in to my theme. Is it possible to do it this way or is it necessary to have them in a plugin?

I'm working on a wordpress theme and want to replace my shortcodes with gutenberg blocks. I'm new to working with blocks but having looked into it a bit I've decided to try and use create-guten-block as that seemed like a good starting point.

The tutorial on github mentions that you should install the blocks to the plugins directory, whereas ideally I want them to be built in to my theme. Is it possible to do it this way or is it necessary to have them in a plugin?

Share Improve this question asked Jan 9, 2019 at 19:34 Nexus6Nexus6 232 bronze badges 1
  • 1 Ideally themes only touch styling of the content and plugins modify or create content. So I guess blocks should belong to plugins. But sure, you can create blocks within a theme. In the end you just need to enqueue a script which then registers the block. – Alvaro Commented Jan 9, 2019 at 20:05
Add a comment  | 

1 Answer 1

Reset to default 1

Creator of create-guten-block here. You should be building Gutenberg blocks via companion plugins. Keep your theme for styles only :) That's the best practice for now.

本文标签: creategutenblock in wordpress theme