Search

Category: Development

Interested in building a WordPress site? Looking for ways to develop new functionality on your WordPress site or maintain an existing one? You’re in the right place. Here you’ll find plenty of guides and articles on maintenance, building, and developing WordPress sites for beginners and advanced users alike.

Discover numerous articles explaining the hierarchical structure and the basic functionality of WordPress, such as taxonomies, creating custom post types (CPTs), WordPress theme development, developing sliders, creating multi-language sites , and more.

If you’re a startup in need of a professional WordPress developer, you’ll also find a detailed post explaining working with freelance WordPress developers in the digital world for the success of your project.

Transfer data from ACF to JS with wp_localize_script

One of the challenges you’ll encounter when developing WordPress themes is finding a way to make your data (accessible via PHP) also accessible in scripts. For example, you might have a popup that appears every time a user clicks a [...]

Installing Tailwind CSS in WordPress themes

In this post, we will see how to install and configure Tailwind CSS in WordPress themes. The process is simple, and I think that a simple & short guide that describes the process might be helpful so I decided to [...]

Dynamic Recipient Email Address Based on Dropdown Menu

As a WordPress developer working with large companies, I have encountered several times the need to dynamically change the email address to which the form is sent. For example, a situation where a company wants a dropdown on the Contact [...]

The Hierarchy of Page Templates in WordPress

If you are WordPress theme developers or using a child theme to modify your parent theme, it is reasonable to assume that you will reach a point where you will have to understand the hierarchy of WordPress themes. This hierarchy [...]

Show the total number of comments in WordPress

In WordPress, there is a built-in function called wp_count_comments that allows you to get the total number of comments for a specific post based on its ID. The function returns the total number of pending comments, approved comments, spam comments, [...]

Few ways to disable Gutenberg on WordPress

Gutenberg is about to be added soon to the WordPress core. These are good news for some people and less good news for others. It can be estimated that at the current stage, the vast majority of websites are not [...]

Displaying popups in WordPress with Javascript Cookies

In this guide, we will see a way to display a popup on WordPress sites. We’ll present the same popping message to your visitors without using a plugin and will help with Cookies. In this case, we will use the [...]

Registering ACF Fields with PHP

Registering ACF fields using PHP reduces the number of database reads and enables the use of Version Control like GIT and similar. The option to define fields via code decreases the chance of losing information that exists in a normal [...]