Created
March 16, 2020 22:06
-
-
Save pattyok/1ae353ec801cd8c9b5daf52b51afb4c3 to your computer and use it in GitHub Desktop.
New Block
This file contains 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
import edit from './edit'; | |
import { registerBlockType } from '@wordpress/blocks'; | |
import {__} from '@wordpress/i18n'; | |
registerBlockType("mytheme-blocks/firstblock", { | |
title: __("First Block", "mytheme-blocks"), | |
description: __("Our first block", "mytheme-blocks"), | |
category: "layout", | |
icon: "admin-network", | |
keywords: [__("photo", "mytheme-blocks"), __("image", "mytheme-blocks")], | |
edit: edit, | |
save: function() { | |
return el("p", null, "Saved content"); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment