Grid in CSS
This article provides an overview of CSS Grid Layout, explaining its structure, features, and how to implement it in web design.
WordPress Theme Files Hierarchy
This post is about the names of the WordPress theme files. And it also reviews which file to include for showing the content of a specific page. This is very important,...
Register a Taxonomy without attaching it to any Post Type
As I found out, WordPress does not allow the creation of taxonomies independently, without binding to any post type. I mean, we can register a taxonomy without binding...
SEO Meta Tags Without Plugins: Title, Description, Robots, Open Graph
The article provides a method to implement SEO meta tags (metadata) for a WordPress website without using plugins, focusing on creating title, description, robots, and...
Caching Min and Max Prices for All Product Categories (Woocommerce)
Caching mechanism for retrieving and storing minimum and maximum product prices for each category, enhancing performance.
PHP CSV File - Creation and Reading
This article explains how to create and parse CSV files in PHP, including the format, creation of CSV files, reading CSV files, and converting Excel files to CSV.
Bulk Actions in Tables: Posts, Pages, Users, Comments...
How to add custom bulk actions to WordPress admin tables and process them using hooks.
How to Prevent Deactivation of Important Plugins?
Tutorial on how to prevent deactivation of important plugins in WordPress and remove the "deactivate" button and checkbox for specific plugins.
jQuery AJAX file upload to server
This article explains how to upload files to a server using AJAX and jQuery, with examples for both general use and WordPress integration.
Do plugins slow down the WordPress?
This short article is my attempt to answer the common question — what is better: install a plugin to add desired functionality or add custom code in functions.php?...
30 Unexpected Things in PHP
A guide to 30 surprising and non-obvious behaviors and pitfalls in PHP.
How do I enable links (bookmarks) in WordPress?
Before version 3.5, WordPress had a so-called "blogroll", "bookmarks", "links" - these were entries that had their own separate menu in the admin-panel, just like...
Anonymous PHP functions in WordPress hooks
Exploring the use of anonymous PHP functions, also known as closures or lambda functions, in WordPress hooks and discussing their advantages and disadvantages.
How Allow to Upload Forbidden File Types
WordPress does not allow uploading just anything to the media library—it protects itself. Files of non-standard (not allowed) types cannot be uploaded because WP has a...
Settings API for Network Sites (Multisite)
This article explains how to create a settings page for a plugin in the WordPress Multisite network admin using the Options API, highlighting the differences from...