Блоки
Компоненты блоков. Без кода. Просто нажмите и вставьте содержимое.
Создавайте без ограничений
Технологии, лежащие в основе большей части Интернета, еще никогда не были такими простыми в освоении. Блоки позволяют визуально взаимодействовать с любой частью содержимого, с кодом или без него, обеспечивая богатые макеты, интерактивную адаптацию и бесконечную расширяемость. Такие же мощные для оформления, как и для разработки, но все же достаточно интуитивно понятные для новичков.
Параграф
Заголовок
Мультимедиа
Изображение
Видео
Аудио
Столбцы
Файл
Секретная сила 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.
Полный творческий контроль
Редактор WordPress — это способ по умолчанию вставлять, преобразовывать, стилизовать и перемещать блоки на визуальном холсте благодаря простому интерфейсу перетаскивания.
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>;
},
} );
Привет, мир (от редактора)
Создайте свой собственный
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.
Только начало
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.