Lohkot
Lohkokomponentteja. Ei koodia. Sinun tarvitsee vain klikata ja syöttää sisältö.

Rakenna ilman rajoja
Teknologia, joka mahdollistaa suurimman osan verkosta, ei ole koskaan ollut helpompi oppia. Lohkojen avulla voit visuaalisesti muokata mitä tahansa sisältöä, koodin kanssa tai ilman, mikä mahdollistaa monipuoliset ulkoasut, interaktiivisen käyttöönoton ja loputtoman laajennettavuuden. Ne ovat yhtä tehokkaita suunnittelussa kuin kehityksessäkin, mutta silti riittävän intuitiivisia aloittelijoille.

Paragraph

Heading

Media

Image

Video

Audio

Columns

File
WordPress’s secret power
Blocks are the visual foundation of WordPress, and can be used to create and manage every part of your site. They're also easier than you think. Learn how to edit a block and you learn how to use all of WordPress—without having to write code. For inspiration, check out what others have done with WordPress in the Showcase.

Täysi luova hallinta
WordPress-editori on oletustapa lisätä, muokata, muotoilla ja siirtää lohkoja visuaalisella kankaalla yksinkertaisen "vedä ja pudota"-käyttöliittymän ansiosta.
registerBlockType( 'your-first-block/hello-world', {
edit: function () {
return <p>Hello world (from the editor)</p>;
},
save: function () {
return <p>Hello world (from the frontend)</p>;
},
} );
Hei maailma (editorista)
Luo omasi
If you can’t find a block that suits your needs, create your own. Creating a block is as simple as building a React component. Use the @wordpress/create-block package to jumpstart your creation.
See what's new with blocks
The latest major WordPress version includes updates that can improve the blocks you use and enhance your overall site-building experience. Get more details about what features are available in the current release.

Only the beginning
While blocks are powerful on their own, they’re also part of something bigger and can be combined or deployed in various ways. As a unified and open syntax, they're easily understood by editors, browsers, and even AI. So whoever is editing will find it easy to make vibrant, personalized designs and experiences happen, fast.