
This snippet queries your MySQL database for all tables and then returns their sizes sorted from largest to smallest. Replace DATABASE with the name of your database. SELECT TABLE_NAME AS…
This snippet queries your MySQL database for all tables and then returns their sizes sorted from largest to smallest. Replace DATABASE with the name of your database. SELECT TABLE_NAME AS…
Imagine you have a multisite with many similar client sites. Perhaps you have a plugin or custom data stored about each subsite. One day you have to update that custom…
In this blog post I will show you how to sync data between a set of specified worksheets in a Google Sheet. This code is written in Google Script, which…
Below is the structure for adding bootstrap, or any other node module SCSS. The hardest part was to get the syntax correctly for the imports and knowing that you need…
Accessibility is an important part of web development that we must consider in modern development. More and more emphasis is placed on sites that are able to serve all people,…
In this blog post, I will show how to make the meta slider have responsive images using the built in WordPress srcset functionality. In order to do this we have…
In the blog I will show how to create admin notices for WordPress that you can update remotely. With this functionality, you won’t need to resubmit your plugin to the…
With this snippet you can click outside an element specified by a selector to perform some action. A common usage would be to close a popup when clicking outside of…