EXIF data is really powerful. Use it to enhance your photostreams.
Category Archives: Code
Reddit Image Viewer
Learn how I built a Reddit image viewer as a hobby app.
Next.js GitHub Pages
Learn how to deploy a Next.js app on Github Pages with Github Actions.
Setup a Local WordPress Development Environment on Docker
As I continue to explore Docker, this post will serve as my notes. I assume assume you already have the following technologies on your computer or know how to install them: Installation Clone WordPress: $ git clone [email protected]:WordPress/wordpress-develop.git Install dependencies: $ cd wordpress-develop && npm i Start Docker containers: $ npm run env:start Install WordPress:Continue reading “Setup a Local WordPress Development Environment on Docker”
Modify a Custom Post Type after it’s been registered
Today I was tasked with adding functionality to an existing custom post type. The problem was, the CPT was being registered in a plugin that I could not edit. After some digging, I found there’s a filter for that that allows you to modify a custom post type after it’s been registered some other way. apply_filters( ‘register_post_type_args’, $args, $post_type ); HookingContinue reading “Modify a Custom Post Type after it’s been registered”
Filter and modify a Custom Post Type – after it’s been registered
Today I was tasked with adding functionality to an existing custom post type. The problem was, the CPT was being registered in a plugin which I could not edit (client declined to give WDS write access to the /plugins folder).
Filter and clean the Archive Title
This client wanted to feature their archive titles in a large hero area. The PSD excluded the prefixes like, “Category:”, “Tag:”, “Author:”, etc…
Get a WordPress Category ID
I rode the struggle bus pretty hard on this one today. I needed to ignore the “featured” category in a loop, and to do so, WP_Query() requires the category ID. Luckily, I found a handy function: get_term_by();
Remove Emoji Support in WordPress 4.2+
Did anyone actually ask around before making this “feature” mandatory? Let’s get rid of this…
Lock down the WordPress Dashboard
Because of the recent increase in attacks on WordPress, we were recently chatting about locking down /wp-admin and wp-login.php. We discussed the Limit Login Attempts plugin, which works really well. If a user fails to log in after a certain amount of attempts, they are blacklisted for a period of time.
Lock down WP-ADMIN
Because of the recent increase in attacks on WordPress, we were recently chatting about locking down /wp-admin and wp-login.php. We discussed the Limit Login Attempts plugin, which works really well. If a user fails to login after a certain amount of attempts, they are blacklisted for a period of time.
Genesis Theme with Sass & Grunt
As Sass and Grunt become more and more popular, the demand for such tools while customizing themes increases. This is true with the Genesis Theme as well.
Add Google Fonts to WordPress
When using Google Fonts with WordPress, you should NOT use @import, nor just place the HTML in the header. Instead use a function and enqueue them.
Create a custom RSS feed for WordPress
Creating a custom RSS feed is pretty easy. I’ll show you have to do it in three steps. Here’s a pro-tip: browsers heavily cache RSS feeds. While developing, try using Incognito Mode.
Create a custom RSS feed template for WordPress
Creating a custom RSS template is pretty easy. I’ll show you have to do it in 3 steps. NOTE: Browsers heavily cache RSS feeds. While developing, open your browser in Incognito Mode!