Blocos
Componentes do bloco. Sem código. Basta clicar e inserir o conteúdo.

Crie sem limites
A tecnologia que dá vida a grande parte da internet nunca foi tão fácil de aprender. Os blocos permitem que você interaja visualmente com qualquer parte do conteúdo, com ou sem código—permitindo layouts sofisticados, integração interativa e extensibilidade infinita. Tão eficientes para o design quanto para o desenvolvimento, mas ainda intuitivos o suficiente para os novatos.

Parágrafo

Título

Mídia

Imagem

Vídeo

Áudio

Colunas

Arquivo
O poder secreto do 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.

Controle criativo total
O editor do WordPress é a maneira padrão de inserir, transformar, estilizar e mover seus blocos em uma tela visual, graças a uma interface simples de arrastar e soltar.
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>;
},
} );
Olá mundo (do editor)
Criar seu próprio
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
A versão principal mais recente do WordPress inclui atualizações que podem melhorar os blocos que você usa e melhorar sua experiência geral na criação de sites. Saiba mais detalhes sobre quais recursos estão disponíveis na versão atual.

Apenas o começo
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.