
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 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…
In the post, I show how to add javascript to your admin pages. This JS will only run when you are inside the WordPress dashboard. The example I use is…
With this snippet you can easily preload your images, css, js. The script initiates after the page loaded so it doesn’t affect loading time. window.onload = function() { setTimeout(function() {…
This article is about how to create and use a local git repo as a remote. The use case I’m using this for is for secure SSL certificate storage. We…
This function let’s you wait until a certain javascript event has finished before firing the code inside the function. For example, if you had some function that runs on resizing…
This is a script I made for updating all of my Bedrock WordPress sites hosted on Digital Ocean. It’s useful because it removes the need go to every site, update…
WP-CLI is awesome. Setting up aliases is even more awesome! With WP-CLI + aliases you can easily update plugins and themes on the production or staging servers. You can easily…
This function converts all image tags with an SVG image in it’s source into an inline SVG. This is useful for having clean HTML, but still gaining benefits of inline…