Admin sub menu page in wordpress custom plugin
We added a top-level menu (add_menu_page) to the WordPress Dashboard. We may want to create a custom WordPress admin sub-level menu and its page for our own top level. Now…
We added a top-level menu (add_menu_page) to the WordPress Dashboard. We may want to create a custom WordPress admin sub-level menu and its page for our own top level. Now…
After logging in to the admin Dashboard you can see the menu on the left side and the RTL websites on the right side. This menu contains some basic menus…
Adding custom scripts or stylesheets to your WordPress site is usually done to improve the functionality, features, and design of a site. There are multiple ways of adding JavaScript (also…
The first step in making your plugin create database tables automatically is to create a PHP function within your plugin that adds a table or tables to the WordPress MySQL/MariaDB…
What is a CRUD system, how to integrate a CRUD system for MySQL in your WordPress site, and what are the pros and cons of using different approaches? We are…
Sometimes, no matter how cool your theme or how incredible the visual editing plugin you are using is, there is a feature you want that they just don’t have. And…
There are two types of hooks: Actions and Filters. To use either, you need to write a custom function known as a Callback, and then register it with a WordPress hook for a specific…