search ]

Tutorials & Guides, Freelance WordPress Developer | Page 8

How to Install Tailwind CSS in Your WordPress Theme

This guide will walk you through installing and configuring Tailwind CSS in WordPress themes. The process is straightforward, so I’ve put together a concise guide to help you get started. But before diving into the steps, let’s briefly explore what [...]

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 a WordPress developer or using a child theme to modify your parent theme, it is reasonable to assume that you will reach a point where you will need 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. [...]

Disavow Tool – Disengagement from Low-Quality Links

In recent years, there has been a debate among SEO specialists claiming that there is no need to reject low-quality links. So, in most cases, Google knows which links are reliable and which are not, but for the benefit of [...]

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

17 WordPress Statistics We Cannot Ignore

If you’re still not convinced that WordPress is the most popular content management system in the world, here’s a list of the most interesting statistics and information about WordPress as of November 2018. Let’s get straight to those statistics: 17 [...]

About Featured Snippets in Google Search Results

When a user asks a specific question in search, Google may choose to display the result as a special block called a Featured Snippet at the top of the search results window. This Featured Snippet contains a summary of the [...]

Check if a Product Belongs to a Specific Category or Tag

If you have tried using the in_category() function to check if a specific product belongs to a certain product category, you probably did not succeed. In this guide, we will see why… This is a common mistake indeed. So let’s [...]

Adding New Custom Fields to WooCommerce Products

WooCommerce is undoubtedly the most powerful E-Commerce plugin for WordPress. One of its main advantages is that it provides an API that allows you to do almost anything you want with your digital store. In this post, we will explain [...]

Properly Retrieve WooCommerce Products in Your Template

The functions wc_get_products and WC_Product_Query provide the standard and correct way to retrieve products when working with WooCommerce. This is the right way because it won’t break due to future changes in the database following new versions of WooCommerce. Using [...]

Savvy WordPress Development