بلوکها
اجزای بلوکی. بدون کد. فقط کلیک کنید و محتوا را درج کنید.

بدون محدودیت بسازید
یادگیری فناوریی که بخش اعظم وب را تامین می کند، هرگز آسانتر از این نبوده است. بلوکها به شما اجازه میدهند تا به صورت بصری با هر محتوایی، با و یا بدون کد، تعامل داشته باشید — آنها طرحبندیهای غنی، نصب تعاملی و توسعهپذیری بیپایان را تامین میکنند. به همان اندازه که برای طراحی و توسعه قدرتمند هستند، برای تازه واردان هم قابل درکند.

پاراگراف

تیتر

رسانه

تصویر

ویدئو

صدا

ستونها

فایل
قدرت مخفی وردپرس
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.

کنترل خلاقانه کامل
ویرایشگر وردپرس روشی پیشفرض برای درج، تبدیل، سبکدهی و جابجایی بلوکهای شما در یک بوم دیداری به لطف یک رابط سادهی کشیدن و رها کردن است.
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
آخرین نگارش اصلی وردپرس شامل بهروزرسانیهایی است که میتواند بلوکهای مورد استفاده شما را بهبود بخشد و تجربه کلی سایتسازی شما را افزایش دهد. جزئیات بیشتری در مورد ویژگیهای موجود در نگارش فعلی دریافت کنید.

تازه اولشه
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.