Blocs
Components de blocs. Sense codi. Només cal que feu clic i inseriu contingut.

Construïu sense límits
La tecnologia que alimenta gran part de la web mai ha estat tan fàcil d'aprendre. Els blocs us permeten interactuar visualment amb qualsevol contingut, amb codi o sense, alimentant dissenys rics, posada en marxa interactiva i extensibilitat infinita. Tan potents per al disseny com per al desenvolupament, però encara prou intuïtius per als nouvinguts.

Paràgraf

Capçalera

Mèdia

Imatge

Vídeo

Àudio

Columnes

Fitxer
El poder secret del WordPress
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.

Control creatiu complet
L'editor del WordPress és la manera predeterminada d'inserir, transformar, afegir estils i moure els blocs en un llenç visual gràcies a una senzilla interfície d'arrossegar i deixar anar.
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>;
},
} );
Hola món (des de l'editor)
Creeu el vostre
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
L'última versió principal del WordPress inclou actualitzacions que poden millorar els blocs que utilitzeu i millorar l'experiència general en la creació de llocs web. Obteniu més detalls sobre les característiques disponibles en la versió actual.

Tan sols és el començament
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.