The Art of Plugin Development: Common Mistakes to Avoid ( WordCamp Speech)
The slides are as follows
The slides are as follows
Sharing your files locally from any folder on your Mac is simple. Just follow these steps: This quick method allows hassle-free sharing of files through your local network. My Suggestions:
Search Google/Youtube to understand the functions clearly.
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…
Welcome to WordPress. From a new plugin you can print hello world like this. First of all, call an action within a Global Request method as follows: Now run the code. Go to your site url like http://wordpress.local/?test=a Enjoy the output!
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…
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…