WordPress training materials
VTC and Lynda have very good training videos on this.
VTC and Lynda have very good training videos on this.
Not at the moment, but, you can go to a page with the block editor, open the browser dev tools, go to the console, and run the following: // grab all block types const types = wp.blocks.getBlockTypes(); // filter to just the core blocks const core_blocks = types.filter( type => type.name.startsWith( ‘core/’ ) ); // … Read more
W3Schools http://www.w3schools.com/ is agreat site for learning about HTML, CSS, PHP etc..