Today when I went to update my WordPress for this site to 4.1.1 I ran into a problem – nothing would happen. The update screen would go blank and absolutely nothing would happen. I searched around for a bit and […] 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 »
WordPress Settings API
The WordPress Settings API allows developers to create settings and settings pages for their plugins/themes. In terms of functionality – the Settings API works in a similar way to the Options API when using it for only a few settings […] Read More »
Using the WordPress Media Uploader
Using the WordPress media library in your own plugin/theme will not only save you a bunch of time but will also incorporate the Media Library that clients are already used to using. This article will provide an example of how […] Read More »
Learning Python – Part III
In the last part of this tutorial series we went over basic Math and String operations. In this tutorial we are going to be expanding our knowledge of these two concepts by writing a program that outputs a personalized message […] Read More »
Turning Subjective Feedback Into Objective
As a web developer – I constantly use feedback from clients to complete my projects. Unfortunately the quality of feedback varies greatly from client to client. Some clients know about the general layout of a website while others have no […] Read More »
Learning Python – Part II
In the second part of my Learn Python series of articles we will be going over some basic math operations and then String and their operations. If you haven’t already – please read Part I of this series before starting […] Read More »
Learning Python – Part I
This article is the first part of a series of articles/guides aimed at helping non-programmers learn the Python programming language. A few of my friends who read (or at least try to read) my blog requested I do something for […] Read More »
WordPress Custom Post Types II
If you’re familiar with WordPress in anyway, then you are probably familiar with posts. To the average user, posts work like blog entries. They have content and a date associated with them and they are displayed with these two bits […] Read More »