WordPress isn’t known for being the fastest website solution on the market – but there are a lot of little tricks that you can do as a developer to make everything run faster. Last week I did an article on […] Read More »
Tag: Web Development
WordPress .htaccess for Performance
WordPress isn’t known for being the fastest CMS out there – but there are a few easy tricks that you can do with your .htaccess file that can significantly increase performance. Recently I launched a WordPress site and web to […] Read More »
Scotch Box Laravel
“The PHP Framework For Web Artisans” is quite a bold statement to make, but Laravel might just accomplish it’s goal of being the best PHP framework out there. Laravel is extremely powerful when it comes to making online applications and […] Read More »
Scotch Box
One of my favorite web development blogs is Scotch.io. They provide a huge variety of articles and tutorials aimed at making you a better web developer. All their content is usually super up to date with modern trends and they […] Read More »
API Calls with cURL
Making API calls with cURL is actually a lot more simple than most people things. In this tutorial we will walk through an example of to make an API call to the GitHub API and get a repositories README file […] Read More »
Adding Font Awesome to Your WordPress Theme
Font Awesome is an awesome tool that allows you to place scalable vector icons all throughout your website. Lots of WordPress plugins and themes use them, so it’s great to know how you can add it to your own custom […] Read More »
Some Useful WordPress Functions
WordPress is full of really well known and useful PHP functions that help developers get their job done quicker – but there are a few lesser known ones that are also extremely helpful to have in your utility belt when […] Read More »
Object-Oriented WordPress
WordPress is normally written in procedural PHP which makes it extremely easy to read, write and follow along with the code to figure out whats going on. However procedural code also has it’s share of downsides such as namespace errors […] Read More »
WordPress Meta Boxes
The WordPress Meta Box API allows you to create and add meta boxes to the administrative interface on any kind of post type. This ranges from Posts and Pages to custom post types that you make yourself. If you want […] Read More »
WordPress Options API
The WordPress Options API is one of the easiest ways to store values in the database on your WordPress site. The API makes it incredibly easy to create, store, access and delete values from the database. This will be a […] Read More »