|

মালয়শিয়া ই-ভিসা || Malaysia e-Visa Bangladesh

কিভাবে বাংলাদেশ থেকে মালয়েশিয়ার ই-ভিসার জন্য আবেদন করবেন মালয়েশিয়া ভ্রমণে ইচ্ছুক বাংলাদেশের নাগরিকদের জন্য ই-ভিসার প্রক্রিয়া খুবই সহজ এবং দ্রুত। আপনাকে যেসব ধাপ অনুসরণ করতে হবে এবং যেসব ডকুমেন্ট দরকার হবে, তা এখানে বিস্তারিতভাবে আলোচনা করা হয়েছে। ডকুমেন্ট চেকলিস্ট: ১. এনওসি (NOC): – অফিস বা প্রতিষ্ঠানের পক্ষ থেকে নো অবজেকশন সার্টিফিকেট (NOC)। ২. কভার লেটার:…

|

A Guide to Date and Time Functions in WordPress and PHP

When managing dates in WordPress, it’s crucial to use the right functions to avoid timezone issues. Here’s how some commonly used functions behave, particularly in GMT+6. Setting the Environment for Examples Examples of Date Functions 1. wp_date(): WordPress Date Formatting in Site Timezone (GMT+6) The wp_date() function returns the date in the timezone configured in…

|

Obtain SMTP Credentials for Development Without the Hassle

You need to send emails. Meaning you need SMTP Credentials. And you don’t have domain. What now ? Do not worry. go to brevo.com ( formerly sendinblue ) Obtain your credentials very easily. Click on the your organization/company name > smtp & api. or simply just go to https://app.brevo.com/settings/keys/smtp Then you may set your smtp…

|

Learn PHP Namespace and Class Loader easy way

Let’s take index.php file first. Now time for the autoload.php file. This is very important file which actually loads the classes dynamically. Let’s setup a class. The file also imports another class. This project actually gives an idea of how the classes can be loaded dynamically. Full source code can be found in this Github…

add_action vs add_filter: What’s the Difference?
| |

add_action vs add_filter: What’s the Difference?

add_action is used to add code to WordPress. This code can be executed when a specific event or hook occurs. For example, you could use add_action to add a custom message to the end of every post, or to redirect users to a different page after they log in. add_filter is used to modify the…