How to upload SVG in WordPress

By default, in WordPress you can't upload SVG files for security reasons. But what to do when you really need to? There is a solution!
Adding taxonomy (term) to post search

The article explains how to enhance the default product search by adding the ability to search by product attribute names.
The "-scaled" suffix for images, or what WP does with large images

Explanation of the "-scaled" suffix for images in WordPress and how it handles large images; instructions on modifying and disabling the creation of "-scaled" images.
Adding meta-field search to regular WordPress search

Adding meta-field search capability to the standard WordPress search functionality.
Difference between async and defer in the script tag

Explains the difference between using async and defer attributes in the script tag to control script loading and execution in HTML pages.
$wpdb->update — array for $where pframeter

Specified value for $where field will turn into IN ( comma separated array values )
when queried.
You can't specify array for the parameter $where
in...
How to automatically add alt text to uploaded image

How to automatically add alt text to uploaded images in WordPress and its benefits for accessibility and SEO.
8 Ways to Change Password in WordPress

This article provides various methods for changing passwords in WordPress, including using PHP, phpMyAdmin, MySQL, and WP-CLI.
List of All WordPress Options

Here is the entire list of WordPress options, which are located in the wp_options table. You can see all the options for your site on the hidden admin page...
How to revert to the WordPress Classic Editor (original editor) - disable Gutenberg Block Editor completely or for a post type

How to revert to the old WordPress editor (completely disable Gutenberg or for a post type). This article explains how to disable the Gutenberg editor in WordPress...
Kama_Cron

A small class for easily adding WP Cron tasks (jobs).
This Class allow you to create WordPress Cron tasks in a quick and simple way. In order not to confuse anything,...
PHP functions filectime() fileatime() filemtime()

Explanation of PHP functions filectime(), fileatime(), and filemtime() and their differences in managing file timestamps.
wp.template — HTML templates for JavaScript in WordPress

This article explains the usage of wp.template in WordPress for creating HTML templates for JavaScript and provides examples of its implementation.
100+ Unicode Symbols for HTML/CSS/JS/PHP

This note will cover universal Unicode symbols. Icons that are understood by all browsers and systems.
To use icons in HTML code (markup), icon packages based on fonts...
Get several adjacent posts in one query

There are number of functions in WordPress to get one of the adjacent (neighboring) posts to the current one: get_previous_post() and...