Author: Aaron
-
Coding an Advent Calendar: Day 2
This year, I decided to create an Advent Calendar website in HTML5, CSS3, and JavaScript. My hopes for the site are to showcase some of my frontend development abilities as well as make something fun, functional, and reusable. Day 2 WP REST API with React.js (structure) There’s been a lot of excitement recently about the…
-
Coding an Advent Calendar: Day 1
This year, I decided to create an Advent Calendar website in HTML5, CSS3, and JavaScript. My hopes for the site are to showcase some of my frontend development abilities as well as make something fun, functional, and reusable (for the next year, and the next year, and the next year, etc). Day One The goal…
-
WP Migrate DB Manually : Multisites & Single Sites
Recently, I needed to migrate a WordPress site from a Multisite installation to a Single Site .com. I usually use the WP Migrate DB plugin because it works well for my basic needs, but going through the Multisite -> Single Site transition very manually, sure made me see the value in the Pro version of…
-
HTML Aside: Finding and Using Internet Images
There are TWO primary concerns when searching for images on the Internet to use on a webpage: WHERE will I find good images? What about image COPYRIGHT? This article covers the basics of both topics – but let’s begin with COPYRIGHT. Copyright There are TWO basic forms of copyright to be aware of: Implicit /…
-
Quick Tip: How to Add FontAwesome (or Other Icon Fonts) to your WP Theme or Plugin
So, you want to use FontAwesome in your Theme, eh? Add the following snippet to your functions.php file: wp_enqueue_style( ‘font-awesome’, ‘//netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css’ ); Do you want to use it in your Plugin? Just place that code in one of your functions within your plugin file and hook into the wp_enqueue_scripts Action: add_action( ‘wp_enqueue_scripts’, ‘plugin_slug_load_iconfont’ ); function…
-
6 Choices for a localhost Web Development Environment
For web development, the bare minimum you need access to is AMP: Apache server MySQL database PHP programming language You can install these as a collection on your computer locally using various OS-specific installations: Windows: WAMP Mac: MAMP Linux: LAMP Cross-platform: XAMPP Or, if you prefer an auto-installer, Bitnami is an excellent option. (And Softaculous also looks promising.) Wikipedia also lists…
-
Default WordPress Theme Customizer Controls
I’ve recently been messing around with the WP Theme Customizer a bunch and have been looking for the names of all the default settings, sections, and controls. I found them in a file in the wp-includes folder: /wp-includes/class-wp-customize-manager.php The various default section names, setting names, and ‘priority’ are listed below.This is mostly useful if you’re…