Book Image

WordPress 5 Cookbook

By : Rakhitha Nimesh Ratnayake
4 (1)
Book Image

WordPress 5 Cookbook

4 (1)
By: Rakhitha Nimesh Ratnayake

Overview of this book

WordPress has been the most popular content management system (CMS) for many years and is now powering over 30% of all websites globally. With the demand for WordPress development and skilled developers ever-increasing, now is the best time to learn WordPress inside out. This book starts with simple recipes for configuring WordPress and managing basic platform features. You’ll then move on to explore how to install and customize WordPress plugins, widgets, and themes. The next few chapters cover recipes for content and user-management-related topics such as customizing the content display, working with content types, using the new Gutenberg editor, and customizing editorial workflow for building advanced blogs. As you advance, you’ll learn how to use WordPress as an application framework as well as a platform for building e-commerce sites. This WordPress book will also help you optimize your site to maximize visibility on search engines, add interactivity, and build a user community to make the site profitable. Finally, you’ll learn how to maintain a WordPress site smoothly while taking precautions against possible security threats. By the end of the book, you’ll have the tools and skills required to build and maintain modern WordPress websites with the latest technologies and be able to find quick solutions to common WordPress problems.
Table of Contents (16 chapters)

Lazy loading posts with Ajax

The standard WordPress list pages are displayed using the archive.php template of the theme. The default list displays a fixed number of posts on the initial page view, along with the pagination buttons or links. The viewer has to request the next set of posts by using the pagination buttons or links. The request for the next page is generally handled by a GET request with a page refresh.

Lazy loading posts, where the data is only retrieved when the user is actually viewing the data in the browser, is the modern trend. Lazy loading is preferred to the standard process due to the following advantages:

  • Improvement in initial page loading time
  • Reduction in the size of the initial page load
  • Users automatically see as many results as they want without needing to manually request the next set of data

The lazy loading technique is widely used in social...