WordPress (category)
Custom Menu in WP 3.0+ (wp_nav_menu)

This article explains the process of creating and customizing custom menus in WordPress 3.0 and above using the wp_nav_menu function, enabling support, and controlling...
The functions.php theme file in WordPress

Everyone familiar with WordPress has heard of the functions.php theme (template) file. However, not everyone understands its purpose, seeing in it only a file that...
The Loop in WordPress

The Loop in WordPress is processing posts one by one that are in the current global data and output information about each post. The Loop gets an array of objects...
Automatic resizing of textarea in JavaScript and jQuery
Methods for automatically resizing textareas in JavaScript and jQuery.
If pagination does not work on the search page
Troubleshooting solution for the issue when pagination does not work on the search page due to a theme-related problem in WordPress.
Executable PHP Code in WordPress Posts
Implementing the ability to insert executable PHP scripts in WordPress posts and pages, along with important security considerations.
Function for displaying posts by number of views
This article discusses a function for displaying the most viewed posts on a WordPress blog/site.
Disable notifications (pings) for your own posts

This article provides a code snippet to disable notifications (pings) for your own posts in WordPress and explains how to completely disable notifications for article...
Conditional Tags in WordPress
The article explains Conditional Tags in WordPress and lists various condition checks with their detailed explanations and usage examples.
How to start form processing using JavaScript
The article explains how to set up form processing using JavaScript under different user interactions such as selecting, clicking, or changing values.
Interlinking Posts in WordPress (Previous Posts from Category)
The article presents a WordPress function for displaying previous entries from the category of the current post, with the option to customize the output format and...
Counting Page Visits on WordPress without Plugins
A guide on counting page visits on WordPress without using plugins, with detailed explanations and a custom code snippet.
Batch moving records (posts) from one taxonomy to another (from category to tag)
The article discusses how to programmatically move multiple posts from one category to another in WordPress, using a custom function and different methods.
Search Results Highlighting Without Using Plugins

Enhancing search functionality in WordPress by implementing search results highlighting without using plugins.
Change HTML symbols (< >) to special symbols when commenting
The article explains how to replace HTML tags PRE and CODE symbols with special characters in comments and articles, and provides a code example that demonstrates the...