ওয়ার্ডপ্রেস গুটেনবার্গ ব্লক ডেভেলপমেন্ট: শুরু করার পূর্বে যা জানা দরকার
|

ওয়ার্ডপ্রেস গুটেনবার্গ ব্লক ডেভেলপমেন্ট: শুরু করার পূর্বে যা জানা দরকার

ওয়ার্ডপ্রেসের গুটেনবার্গ এডিটর ২০১৮ সালে ওয়ার্ডপ্রেস ৫.০ আপডেটের মাধ্যমে আনুষ্ঠানিকভাবে যুক্ত হয়। এটি ওয়ার্ডপ্রেসে কন্টেন্ট তৈরি এবং ডিজাইন করার এক নতুন দিগন্ত খুলে দেয়। গুটেনবার্গ ব্লক এডিটর ব্যবহার করে, আপনি পোস্ট এবং পেজের বিভিন্ন এলিমেন্টগুলোকে ব্লক হিসেবে সাজিয়ে কাস্টম লেআউট তৈরি করতে পারেন। তবে, একজন ডেভেলপার হিসেবে গুটেনবার্গ ব্লক ডেভেলপমেন্ট শুরুর আগে কিছু বিষয় মাথায়…

Deploy Your Plugin to the WordPress.org Repository Using GitHub Actions

Deploy Your Plugin to the WordPress.org Repository Using GitHub Actions

Automating the deployment of your WordPress plugin to the WordPress.org repository can save you time and ensure a smooth release process. With GitHub Actions and the 10up/action-wordpress-plugin-asset-update action, you can streamline this process. Here’s how to set it up: Step 1: Prepare Your Plugin Ensure your plugin follows WordPress.org guidelines and includes the necessary files…

WordPress Error Log Not Showing with Laravel Herd

WordPress Error Log Not Showing with Laravel Herd

If you’re encountering issues with Laravel Herd where error logs are not showing up in WordPress, the solution involves adjusting the log configuration for PHP-FPM. Here’s how you can resolve this: Step-by-Step Solution Step 1: Locate the Log File Laravel Herd writes logs to the following file: Step 2: Adjust Configuration Files Navigate to the…

How to Build an Admin Page Using React in WordPress

How to Build an Admin Page Using React in WordPress

Creating a custom admin page using React in WordPress can enhance the functionality and user experience of your site. In this guide, we’ll use @wordpress/element for React, and @wordpress/components for UI elements. We’ll also set up a minimal workable Webpack configuration. Step 1: Install Necessary Packages First, ensure you have Node.js and npm installed. Then,…

Using Composer With WordPress

Using Composer With WordPress

Composer is a dependency manager for PHP, widely used in modern web development for managing libraries and dependencies efficiently. When working with WordPress, Composer can streamline your development workflow, manage plugins and themes as dependencies, and ensure version control across your projects. Here’s how you can use Composer with WordPress: 1. Install Composer First, you…