Home
David Angulo - Software Engineer
Cancel

How to display the last updated date of your posts in WordPress

In this tutorial, we would be learning on how to display the last updated date of your posts on WordPress. Showing the last updated date of a post can be very beneficial. This allows your users to...

Create plugin in WordPress step by step tutorial for beginners

This tutorial will guide you on how to create plugin on WordPress. WordPress plugins are simply PHP scripts that extend the functionality of your WordPress website. If you have a running WordPress...

How to create a CRUD operations plugin in WordPress

In this tutorial, we would learn how to create crud operations plugin on WordPress. This tutorial will demonstrate a WordPress plugin that can do CRUD (Create/Insert, Read/Select, Update, Delete) ...

How to create database tables when your plugin is activated

In this tutorial, we would be learning on how to create database tables when your plugin is activated. If you are developing your own WordPress plugin, chances are there are some data you need to ...

How to create a contact form plugin in WordPress

In this tutorial, we would be dealing with how to create a contact form plugin on WordPress. There are tons of contact form plugins in the WordPress plugin directory. There are also contact form i...

How to create a dashboard widget in WordPress

In this tutorial, we would be learning on how to create a dashboard widget on WordPress. If ever that you are developing a plugin that needs a report generation then this one is the perfect tutori...

How to add custom column in WordPress post

In this tutorial, we would be learning on how to add custom column in WordPress post. If you are creating a plugin that is meant to be used on posts, then you might need this function. You might ...

How to create a cron job in WordPress

In this tutorial, we would be learning how to create cron job on WordPress. Sometimes you just need some automated functions in your WordPress plugins. Maybe you need to generate a report every 12...

How to create a settings page for your WordPress plugin

In this tutorial, we would be learning on how to create a settings page for your WordPress plugin. Whether the plugin that we are creating is small or big, sometimes we just need a setting for it....

How to verify email address in PHP

In this tutorial, I will guide you on how to verify email address in PHP. Sometimes a regular expression is just not enough. For example, you can contact me through my email address hello@davidang...