Archive

Category: WordPress

How to Remove Parent Slug From Child Page URL in WordPress

In WordPress, the URL structure for child pages typically includes the parent page’s slug in the URL. For example, if you have a parent page with the slug “parent” and a child page with the slug “child,” the URL for the child page would be something like: If you want to remove the parent slug […]

1 min read Read Guide
Drag and Drop Sortable Rows in WordPress using jQuery UI

Drag and Drop Rows in WordPress Using jQuery

Introduction: As WordPress developers, we often find ourselves in situations where we need to create custom plugins to cater to the unique requirements of our clients. Recently, I encountered a challenge while developing a WordPress plugin for a client who required a user-friendly way to manage data through sortable rows with drag-and-drop functionality. Surprisingly, the […]

3 min read Read Guide

How to Lazy Load images in WordPress without Plugin?

Lazy-load is a way to prevent images from loading before scroll. There are many plugins that help you with this, some themes even have a built-in lazy-load function. Here I will show you that it’s not hard to implement it yourself. Step 1: Replace SRC Attribute When an image has src attribute, it will always load no […]

3 min read Read Guide