search ]

Guides & Articles, Freelance WordPress Developer - Israel | Page 5

Advanced WordPress management with WP-CLI

The command-line has always been popular among developers because it provides tools that speed up work and streamline the development process. At first glance, it’s hard to believe how using the command line to perform certain actions is faster than [...]

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 [...]

Adding reCAPTCHA (v3) to Contact Form 7 forms

reCAPTCHA protects you from spam and other types of malicious automated abuse of your website’s forms. The Contact Form 7 plugin integrates with reCAPTCHA and with its help you can block automatic submissions by bots. The latest version of reCAPTCHA [...]

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 [...]

WP_Query – Filter Posts by Meta Fields

In this short post, I assume you have basic knowledge of working with the WP_Query class in WordPress. Before we begin, let’s provide some basic examples similar to those found in the WordPress Codex. These examples are relevant when you [...]

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 [...]

The SEO impact of Nofollow, Sponsored & UGC links

Google shook up the world of SEO and announced two new attributes for marking nofollow links, which will help Google better understand the nature of links. However, this announcement caused some confusion in the SEO world and among website promoters. [...]

Show the total number of comments in WordPress templates

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, [...]