A Technical Look at Cookie Compliance In modern web development, data collection drives critical functions like analytics, personalization, and ad targeting. But any handling of personal data—especially via cookies—must comply with strict privacy laws. Regulations such as the GDPR and CCPA mandate explicit user consent before loading non-essential cookies or tracking scripts. For developers, this…
Author: Ryan Brooks
Creating a Customizable Site Theme in WordPress
Customization is an important aspect of a modern website. It gives you the power to change a site to fit your needs and to ultimately deliver the best version of the site to your customers. And with the introduction of full site editing in WordPress, people are beginning to realize the power of changing a…
Filtering Custom Post Types with Advanced Custom Fields and JavaScript
A common requirement in many WordPress sites that have large amounts of content is the ability to filter that content. Whether it be blog posts, products, or custom post types—filtering allows users to further specify what they want and receive the best information possible for their unique experience. While there are many great plugins out…
How to Define Functions in JavaScript
JavaScript is a programming language that the vast majority of websites use to perform client-side tasks. It is utilized in combination with HTML and CSS to create the layouts and functionality that we see on sites every day. A fundamental aspect of the functionality of JavaScript is defining functions, so let’s go over a few…