ব্লকসমূহ
ব্লক উপাদান। কোনো কোড নেই. শুধু ক্লিক করুন এবং বিষয়বস্তু সন্নিবেশ।

সীমা ছাড়াই তৈরি করুন
যে প্রযুক্তিটি ওয়েবের অনেক অংশকে শক্তি দেয় তা শেখা সহজ ছিল না। ব্লকগুলি আপনাকে কোড সহ বা ছাড়াই যেকোন বিষয়বস্তুর সাথে দৃশ্যত ইন্টারঅ্যাক্ট করার অনুমতি দেয়- সমৃদ্ধ লেআউট, ইন্টারেক্টিভ অনবোর্ডিং এবং অন্তহীন এক্সটেনসিবিলিটি। ডিজাইনের জন্য যতটা শক্তিশালী সেগুলি বিকাশের জন্য, কিন্তু এখনও নতুনদের জন্য যথেষ্ট স্বজ্��াত।

অনুচ্ছেদ

শিরোনাম

মিডিয়া

ছবি

ভিডিও

অডিও

কলামসমুহ

ফাইল
ওয়ার্ডপ্রেসের গোপন শক্তি
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
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.