How to Check if your WordPress Site is Loading Multiple jQuery Scripts

The very first step is to open the page source by doing right click and then View Page Source. Then search for jquery.js or most likely jquery.min.js. The browser will tell you how many times the keyword was found on that page. The jQuery version that ships with WordPress will be loaded from /wp-includes/ folder […]

How to Check if your WordPress Site is Loading Multiple jQuery Scripts Read More »

How to Dynamically Modify Request URL or Parameters in WordPress Functions wp_remote_get or wp_remote_post

WordPress has lots of filters and actions which are known as actions. That way you can achieve a lot of things without having to modify the WordPress source code directly also known as hacking the core. There is a WordPress filter for the http_request_args but there isn't one for 'http_request_url' just yet. To modify the

How to Dynamically Modify Request URL or Parameters in WordPress Functions wp_remote_get or wp_remote_post Read More »

How to Fix ajaxurl Not Defined on the WordPress Frontend

What is the ajaxurl? The ajaxurl is a JavaScript variable in WordPress that specifies the URL that handles WordPress Ajax requests. It points to the admin-ajax.php file, typically found in the WordPress admin directory. For example, if your WordPress site is installed at https://example.com, the ajaxurl would be https://example.com/wp-admin/admin-ajax.php. Why is ajaxurl not defined on

How to Fix ajaxurl Not Defined on the WordPress Frontend Read More »

How to Upgrade from an Older Version of WordPress to the Latest Version

Let's say you have been tasked to upgrade an older version of WordPress. WordPress team has been doing a great job keeping versions compatible and the upgrades succeed in 99.99% of the time which is awesome and is probably taking them lots of time and effort to do this. Backups Before you do anything. It's

How to Upgrade from an Older Version of WordPress to the Latest Version Read More »