Debug Errors in WordPress

In order to fix backend errors in wordpress, we need to track those issues in somewhere. There is an option to implement this functionality in wordpress, but we need to setup some configuration for it. Please add the following configuration setting in wp-config.php when you need to track the backend errors in wordpress. define(‘WP_DEBUG’, true);define(‘WP_DEBUG_DISPLAY’, …

General steps to create the WP plugin with Google API integration

Sometimes we need to build the WP plugin with Google API integration. Here are the big image of the steps to create it. Create the project on the google developer console, and install proper Google Api Implement the Google Authentication module using Client Id and Client Secret which Google provides. Build the plugin consuming the …

WordPress query monitor plugin

Query Monitor is the developer tools panel for WordPress. It enables debugging of database queries, PHP errors, hooks and actions, block editor blocks, enqueued scripts and stylesheets, HTTP API calls, and more. It includes some advanced features such as debugging of Ajax calls, REST API calls, and user capability checks. It includes the ability to …

Cache Service in WPEngine

WPEngine support powerful cache functionality. Because of this, you may sometimes have the non-updating issue of website. To prevent this problems, you need to register specific URL not to cache in WPEngine. For instance, when you add the WooCommerce plugin to your WP Engine website, WPEngine automatically adds some caching exclusions to ensure your pages …