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 »
Tag: Development
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 »
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 »
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 »
WordPress Custom Post Types
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 »
WordPress User Role Pages
Recently, I was creating a site in WordPress where there would be a created user role and they had to have access to certain pages on the site but not subscribers. However – they had the same capabilities as the […] Read More »
Error, Success, Warning & Info Messages
Error, success, warning and info messages/alerts made entirely with CSS. These messages should be output to the user to let them know how things are going with their interaction with the site. Also please note that these use Font Awesome. […] Read More »
Simple jQuery Tabs
I can’t exactly say why, but I’ve been really into doing little CSS code snippets like this tabs example lately. The tabs are a single content area with multiple panels, each associated with a header in a list. Clicking on […] Read More »