Ever noticed the messages WordPress displays when you activate a plugin, or save settings? Or the messages that some plugins show in the dashboard, perhaps notifying you of a missing requirement? These are called Admin Notices and I’m going to show you how to add your own in your plugin or theme. They’re really quite [...]
View PostListing Custom Post Type Entries with a Short Code
Once you have created a custom post type with Easy Content Types, you will want to begin displaying entries from that post type. There are a variety of ways to do it, but one of the easiest by far is using the [ecpt_query] short code included with the plugin. This short code will let you [...]
View Post custom post type, post types, recent posts, taxonomies, taxonomyShow Message to Logged In User with a Short Code

Being able to restrict certain content to logged in members only is a very useful function, especially for membership based websites, whether free or premium. This quick tutorial shows you the basics of how to write a short code function that will allow you to limit blocks of content to logged in users only.
View Post is_user_Logged_in()Customize Plugin Action Links
Plugin Action links are the links, such as Deactivate, that are displayed on the plugin entry in the WordPress plugins page. These links are extremely useful for helping your users find their way around the admin section of your plugin, as well as for providing helpful links such as Contact or Support.
View Post links, pluginSimple Posts By Author Widget Tutorial and Plugin

This tutorial will demonstrate the methods used to write a simple Posts By Author Widget plugin. The idea of this plugin is to provide a widget that can be used to displays posts from a specific author. The plugin this tutorial is about is a much simplified version of the [highlight_green]Posts By Author Widget Pro [...]
View Post authors, usersShow Posts with a Short Code and Display Posts in Any Page
Being able to display a list of posts within a page (or other post) is very useful. In this tutorial I’m going to show you how to write a simple post query short code that will allow you to display a list of posts from any category, tag, or custom taxonomy.
View Post query_posts, short code, shortcodeModify the Contextual Help Tab on Any WordPress Admin Page
This video will give you a quick demonstration of how to modify the Contextual Help tab on any WordPress admin page. This trick is particularly useful for users wishing to add extra information to an already-existing help tab, such as the one on the Themes or Plugins page.
View Post contextual help, help tabAdd Contextual Help to the “Help Tab” for your Plugin
The “Help” tab is a very underused, under rated, but fantastic tool for all plugin developers. If you’re not familiar with it, the “Help” tab is a little button in the top right corner of your WordPress dashboard that, when clicked, will bring in a nice slide-down panel with helpful information.
View Post contextual help, help tabRetrieve Attachment ID from Image URL
Especially when developing plugins or theme settings that make use of the WordPress media uploader to upload and insert images, being able to retrieve the ID of the image uploaded can be extremely useful. By grabbing the image (attachment) ID, you suddenly have a lot more control over what you can do with the image, [...]
View Post attachment, images, thumbnailCreate Database Tables When Plugin is Activated
Using custom database tables for your WordPress plugins is one of the way that you can greatly improve the kind of plugins you are able to create. DB tables give you a way to manage, organize, and save data for your plugin, and creating them for your plugin is very simple.
View Post database, plugin, tools