Category: Wordpress

Easy creation of a simple plugin in WordPress

Need Plugin in WordPress? As a WordPress developer, I have created many plugins and learned a lot about how to create a simple one from scratch. In this article, I will share with you the steps I follow to create a simple plugin that includes a menu item called “Test Plugin”, a database table, and […]

Removing id attributes from link and script tags in WordPress site

As a WordPress developer, I understand the importance of clean, efficient code. That’s why I want to share my recent discovery on removing id attributes from link and script tags in WordPress. Id attributes in HTML code can cause unnecessary bloat and slow down the site’s performance. That’s why I created a function to remove […]

Working with the WordPress database: wpdb class

Hey! Welcome to our tutorial on working with the WordPress database using the wpdb class. In this tutorial, we’ll be going over the basics of creating tables, adding, updating, and editing data in your WordPress site’s database. First, let’s start with creating a table. To do this, we’ll use the $wpdb->query() method, which allows us […]

Easily Create a Custom Post Type in WordPress

Hey there! So you’re looking to create a custom post type in WordPress, huh? Well, you’ve come to the right place. Creating a custom post type is a great way to organize and present different types of content on your website. It’s also a good way to separate content from the default “post” and “page” […]