Adding content in Gutenberg editor

Yes and no. There is a feature called “nested blocks” that will let a developer create a block that contains other blocks. This is useful for specific template-type approaches. But, if you’re asking just as a general content author if you can easily put your blocks all together, no, you cannot. They are designed to … Read more

Customize Editor Styles

@dalbeab already answered your question, but thought I would point out a way to add horizontal rule to your editor if you wish. Within functions.php, you can add this: // add horizontal rule button function enable_more_buttons($buttons) { $buttons[] = ‘hr’; return $buttons; } add_filter(‘mce_buttons’, ‘enable_more_buttons’); Then you will have a TinyMCE button that looks like … Read more

Bulk edit contents of pages

For any other readers I’d like to add in advance that this only really makes sense if you are kind of creating drafts or templates or whatever you want to call it that will be changed later on. Otherwise you’ll at least deal with SEO penalties due to duplicate content. Unfortunately this functionality isn’t part … Read more