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 »
Tag: PHP
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 »
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 »
WordPress Menus with Foundation
In a previous blog post, I talked about Theme Development From Scratch w/ Underscores & Foundation. However, I really didn’t go into a lot of detail about how to use Foundation with WordPress. The main reason for this is the […] Read More »
SEO Tricks and Tips for WordPress
Introduction Search Engine Optimization (SEO) is a widely discussed topic – just Google “SEO” and you can see how many companies exist that only deal in SEO. For those of you that don’t know, SEO if the process of improving […] Read More »