Creating New Fields for WordPress Comments

There are cases when it is necessary to add custom fields to the WordPress comment form, for example, a field for entering a phone number, address, rating, mood, and so...

Flexbox in CSS

The layout model known as Flexbox (flexes) is becoming increasingly popular. Primarily due to its convenient use in creating frameworks and layouts for individual HTML...

Thumbnails for Taxonomy Elements (WP_Term_Image)

In this post I'm going to share the code that adds the ability to set thumbnails for taxonomy elements, both built-in (tags, categories) and custom. The code is tested...

Frontend. 15+ hooks for functions.php

Collection of popular, useful, and interesting frontend hooks for functions.php, including changing the login page logo, redirecting to a post when searching, adding...

Admin Panel. 15+ Hooks for functions.php

This article provides a collection of over 15 useful hooks for customizing the WordPress admin panel by modifying the functions.php file.

Global Variables of WordPress

We often use functions to retrieve some data on a page and are unaware that this data can be taken from global variables. For example, the name of the author on the...

Setting a Custom Image as the Default Avatar

This article provides information on how to set a custom image as the default avatar in WordPress, along with three different methods to achieve this.

Custom Filters in Post, Comment, User, and Taxonomy Tables

The article explains how to add custom filters for managing records, comments, users, and taxonomies in WordPress admin tables, including practical code examples.

Trick: dynamic closing of tags in the theme

The article explains a clever technique for dynamically closing tags in WordPress themes, improving code organization and simplifying template files.

HTTP API WordPress

Introduction to using the HTTP API in WordPress, including the basics of sending requests and handling responses. Learn about the functions and their parameters, as...

Passing Variables by Reference in apply_filters(), do_actions()

Passing variables by reference in WordPress filters and events, and passing objects by reference.

How to create your own demo/test content (dummy data) for WP?

The article explains how to create demo/test content for WordPress themes and provides step-by-step instructions for importing test data.

Feeds (RSS) in WordPress

This article explains the concept of feeds (RSS) in WordPress, how they work, how to disable them, the types of content and feed formats, feed URLs, and the PHP...

Kama_Post_Meta_Box — Create Posts Meta-fields (MetaBoxes)

In this article I'm going to share a Kama Post Meta Box class, with which you can quickly create meta-fields for posts, just by specifying them as an array. It's a kind...

Number of Elements per Page for WP_List_Table Tables

Tutorial on adding customizable pagination to tables created using WP_List_Table in WordPress admin.