
How Fast Can Your WordPress Site Truly Be?
- June 1, 2015
- Leave a comment
One of the most common problems WP administrators experience is the struggle to speed up their site. This was no exception for a client whose pages were taking so much time to load that he was concerned it would legitimately affect his foreign events business. Slow load times and performance may have multiple culprits. We tackled them by:
- Removing extra filters – ‘addEventConditions’, ‘setupFields’ and ‘addStartDateToGroupBy’ filters were removed by using standard wp function remove_filter on loading events page. These filters were making event loading page query heavier
- Eradicating extra scripts – JavaScripts were eliminated by using wp_dequeue_script function because they were not required for events listing page
- Optimizing images – Placed a check to limit the size of the image that was uploaded for a particular event
- Removing recurrence from the “Event Calendar” plugin
- Reducing listing per page
- Adding “Captcha” to prevent spamming
- Deactivating unwanted plugins per page
User Comments