-
Using the tomorrow.io API to Fetch Weather Data on a WordPress Website
tomorrow.io is a great real-time weather API you can use to fetch weather information and display it on your website or application. Here’s how I am using the API to display my local weather information on my WordPress website.
-
Optimizing WordPress Image Scaling for a Better Performing Website
Discover the significance of precise image scaling in WordPress for improved web performance. Learn to create custom sizes and streamline the process with the Regenerate Thumbnails plugin for a seamless experience. -
JavaScript: Declaring Variables with “let” vs. “const”
In JavaScript, "let" declares a variable whose value can change, while "const" declares a variable that cannot be reassigned. Choose based on intended behavior and make code cleaner and more maintainable. -
CSS Variables vs Sass Variables
CSS and Sass are web page styling languages, with Sass being a preprocessor that extends CSS with advanced features like variables, nesting, and mixins for dynamic stylesheet organization and calculation. -
Run PHP Function When Updating WordPress ACF Options Page
I needed to run a custom PHP function that updates custom fields attached to users when an admin clicks "update" on a back-end options page. The way I did this was using theacf/save_postaction. -
The Power of Custom Fields
Power up your WordPress site with custom fields. Custom fields allows you to easily add custom data to your posts, pages, users, and more!