How to Add an HTML Sitemap Page in WordPress (2 Ways)

How to Add an HTML Sitemap Page in WordPress (2 Ways)

There are several ways to add an HTML sitemap page to a WordPress website, but two of the most common methods are: Method 1: Using a Plugin Log in to your WordPress dashboard and go to the “Plugins” section. Click “Add New” and search for an HTML sitemap plugin, such…

Read More
How to Setup Google Analytics 4 (GA4) - A Complete Guide

How To Convert Google Analytics to GA4

To convert your existing Google Analytics account to GA4, follow these steps: Create a new GA4 property: a. Log in to your Google Analytics account and click on “Admin” in the bottom left-hand corner. b. Under the “Account” column, select the account you want to convert to GA4. c. Click…

Read More
custom post type using function

How to Create Custom Post Types Using Function.php

On your WordPress website, post types are used to help distinguish between different content types in WordPress. Posts and pages are both post types but are made to serve different purposes. You can also create your own post types, known as custom post types. These are useful when creating content…

Read More
how to add cookie popup on wordpress

How to add a cookie popup on your WordPress website?

Ever since GDPR came into effect, it has bought changes to people’s perception of privacy and data security. Website owners dealing with clients in the EU region must ensure that their website complies with GDPR guidelines. As a result many websites now display cookie popups and banners containing information about…

Read More

How to Add Pagination to WordPress Pages and Posts to Help

If you looking for add pagination to WordPress for your pages and posts, then this perfect article for you. Pagination allows website visitors to go back and forth multiple pages of content, without clicking the repetitive, older posts, and newer posts links. Pagination is triggered when there are more posts…

Read More
How to Automatically Share WordPress Posts on LinkedIn?

How to Automatically Share WordPress Posts on LinkedIn?

Now a days social media is most popular platform to increase the traffic for the website. In WordPress we always publish the post everyday. Now we dont need to share the post link on LinkedIn wall separately, in WordPress there is a plugin called “WP LinkedIn Auto Publish”. Using this…

Read More
3 Top Email Marketing Platforms That Integrate With WordPress

3 Top Email Marketing Platforms That Integrate With WordPress

1. MailChimp MailChimp is a one of the most popular marketing platform geared towards small businesses. However, its tools are utilized by several large-scale companies as well: MailChimp’s features encompass social media, landing pages, and much more. However, in this post, we’ll focus on its email-related services, which include: An…

Read More
Load More Posts with AJAX. Step by Step Tutorial Without Plugins.

Load More Posts with AJAX. Step by Step Tutorial Without Plugins.

Load More Posts with AJAX. Step by Step Tutorial Without Plugins tutorial. It is something help you to execute this. Step 1. Load more button # You can skip this step if you want to load more posts on scroll. We begin with the button HTML. Here is just one…

Read More
how to list of categories

How to List of Categories for Custom Post Types In WordPress

You can’t seem to find how to list out the categories under the custom taxonomy similar to how you’d use the wp_list_categories for normal posts! As per the below code my custom taxonomy name is “eventcategory” , change this as per yours and add below code and enjoy , it…

Read More
get featured image url by page id

Get featured image URL by page id in WordPress

Question. I need to display the featured image of a page. How can I get the featured image URL by particular page ID. Any help? Answers 1. Did you try anything? Its always helpful to share what you have tried. $url = wp_get_attachment_url( get_post_thumbnail_id($post_id) ); 2. Or if you want…

Read More