Skip to content

Latest commit

 

History

History
67 lines (45 loc) · 5 KB

glossary.md

File metadata and controls

67 lines (45 loc) · 5 KB

Glossary

Attribute sources
An object describing the attributes shape of a block. The keys can be named as most appropriate to describe the state of a block type. The value for each key is a function which describes the strategy by which the attribute value should be extracted from the content of a saved post's content. When processed, a new object is created, taking the form of the keys defined in the attribute sources, where each value is the result of the attribute source function.
Attributes
The object representation of the current state of a block in post content. When loading a saved post, this is determined by the attribute sources for the block type. These values can change over time during an editing session when the user modifies a block, and are used when determining how to serialize the block.
Block
The abstract term used to describe units of markup that, composed together, form the content or layout of a webpage. The idea combines concepts of what in WordPress today we achieve with shortcodes, custom HTML, and embed discovery into a single consistent API and user experience.
Block categories
These are not a WordPress taxonomy, but instead used internally to sort blocks in the Block Library.
Block ~Inserter~ Library
Primary interface for selecting from the available blocks, triggered by plus icon buttons on Blocks or in the top-left of the editor interface.
Block name
A unique identifier for a block type, consisting of a plugin-specific namespace and a short label describing the block's intent. e.g. core/image
Block patterns
Block patterns are predefined layouts of blocks that can be inserted as starter content that are meant to be changed by the user every time. Once inserted, they exist as a local save and are not global.
Block type
In contrast with the blocks composing a particular post, a block type describes the blueprint by which any block of that type should behave. So while there may be many images within a post, each behaves consistent with a unified image block type definition.
Classic block
A block which embeds the TinyMCE editor as a block, TinyMCE was the base of the previous core editor. Older content created prior to the block editor will be loaded in to a single Classic block.
Dynamic block
A type of block where the content of which may change and cannot be determined at the time of saving a post, instead calculated any time the post is shown on the front of a site. These blocks may save fallback content or no content at all in their JavaScript implementation, instead deferring to a PHP block implementation for runtime rendering.
Inspector
Deprecated term. See Settings Sidebar.
Post settings
A sidebar region containing metadata fields for the post, including scheduling, visibility, terms, and featured image.
RichText
A common component enabling rich content editing including bold, italics, hyperlinks, etc.
Reusable block
A block that is saved and then can be shared as a reusable, repeatable piece of content.
Settings Sidebar
The panel on the right that contains the document and block settings. The sidebar is toggled using the Settings gear icon. Block settings are shown when a block is selected, otherwise document settings are shown.
Serialization
The process of converting a block's attributes object into HTML markup, which occurs each time a block is edited.
Static block
A type of block where the content of which is known at the time of saving a post. A static block will be saved with HTML markup directly in post content.
TinyMCE
TinyMCE is a web-based JavaScript WYSIWYG (What You See Is What You Get) editor.
Toolbar
A set of button controls. In the context of a block, usually referring to the toolbar of block controls shown above the selected block.
Template
A template is a pre-defined arrangement of blocks, possibly with predefined attributes or placeholder content. You can provide a template for a post type, to give users a starting point when creating a new piece of content, or inside a custom block with the InnerBlocks component. See the templates documentation for more information. See templates documentation for more information.
Template part
Template parts are equivalent – in blocks – of theme template parts. They are generally defined by a theme first.They carry some semantic meaning (could be swapped between themes such as a header) and can only be inserted in the site editor context (within “templates”). They are primarily site structure and are never to be mixed with the post content editor.