A Guide to WordPress Custom Post Types: Creation, Display and Meta Boxes

WordPress is built for customization. It was created in such a way that each and every section is customizable. In this tutorial we will be exploring one of the most powerful features of WordPress known as Custom Post Types and how WordPress reached a new height with the advent of this wonderful feature.

Looking for a Shortcut?

If you want to create custom post types quickly and easily, you can use the popular Post Type Builder WordPress plugin on Envato Market, which is designed to let you create custom post types, taxonomies, and post type templates. 

Create any custom post type that you can imagine without writing any code. Everything is done seamlessly with the WordPress admin back end guiding you through step-by-step with an intuitive drag & drop interface. It works on any WordPress.org site with any theme.

Post Type Builder WordPress plugin on Envato Market
Post Type Builder WordPress plugin on Envato Market

What Actually Are Custom Post Types?

Suppose you want your blog to have a separate section for Movie Reviews. By using Custom Post Types you can create a new type of item like Posts and Pages, which will contain a different set of data. It will have a new administration menu, dedicated editing pages, custom taxonomies and many more utilities required for full fledged publishing.

Custom Post Types are a new set of administrative options appearing along with the default post types such as Posts, Pages, Attachments etc. A Custom Post Type can store any type of information. It has a dedicated editor, media uploader and uses the existing WordPress table structure for ease in data management. The main advantage of creating custom post types using the WordPress API is that it equips itself well with existing themes and templates. Custom Post Types are also SEO friendly because of their nifty permalinks.


Why Use Custom Post Types?

Custom Post Types help us to keep different types of posts in different buckets. It separates our regular posts from others. Simple enough!


Let's Create a Custom Post Type Plugin

Here we shall create a custom post type plugin which will display favorite movie reviews. Lets get started.

Step 1: Create WordPress Plugin Directory

Open your WordPress Plugin directory and create a new directory called Movie-Reviews.

Step 2: Create PHP File

Open the directory and create a PHP file named Movie-Reviews.php.

Step 3: Add Header

Open the file and add the appropriate header at the top.

Step 4: Register Custom Function

Before the closing of the PHP command, type the following line of code to execute the custom function named create_movie_review during the initialization phase every time a page is generated.

Step 5: Function Implementation

Provide an implementation of the create_movie_review function.

The register_post_type function does most of the work for us. As soon as it is called it prepares the WordPress environment for a new custom post type including the different sections in the admin. This function takes two arguments: the first one is an unique name of the custom post type and the second one an array demonstrating the properties of the new custom post type. Here it's another array containing the different labels, which indicates the text strings to be displayed in the different sections of the custom post type e.g. 'name' displays the custom post type name in the dashboard, 'edit' and 'view' are displayed in Edit and View buttons respectively. I think the rest are pretty self explanatory.

In the next arguments:

  • 'public' => true determines the visibility of the custom post type both in the admin panel and front end.
  • 'menu_position' => 15 determines the menu position of the custom post type.
  • 'supports' => array( 'title', 'editor', 'comments', 'thumbnail', 'custom-fields' ) determines the features of the custom post type which is to be displayed.
  • 'taxonomies' => array( '' ) creates custom taxonomies. Here it's not defined.
  • 'menu_icon' => plugins_url( 'images/image.png', __FILE__ ) displays the admin menu icon.
  • 'has_archive' => true enables archiving of the custom post type.

Please visit the WordPress Codex register_post_type page for more details on the different arguments used in custom post types.

Step 6: Icon for Custom Post Type

Save a 16x16 pixel icon image in your current plugin folder. This is required for the custom post type icon in the dashboard.

Step 7: Activate the Plugin

Activate the plugin and that's it, you have a new custom post type which has a text editor, publishing and featured image controls, comment control and the custom fields editor.

Step 8: Add a New Item

Click on the Add New option to go to the custom post type editor. Provide a movie title, a review and set a featured image.

Step 9: Publish

Publish the post and click on View Movie Review to view the created movie review in the browser.


Creating Meta Box Fields for Custom Post Types

The meta box mechanism uses the help of the built in WordPress meta box system and helps to add fields required specifically for the custom post types, without requiring the default custom fields in the editor.

Step 1: Registering the Custom Function

Open the Movie-Reviews.php file and add the following code before the PHP end tag. This registers a function to be called when the WordPress admin interface is visited.

Step 2: Implementation of the Custom Function

Add an implementation of the my_admin function which registers a meta box and associates it with the movie_reviews custom post type.

Here add_meta_box is the function used to add meta boxes to custom post types. Explanation of the given attributes:

  • movie_review_meta_box is the required HTML id attribute
  • Movie Review Details is the text visible in the heading of the meta box section
  • display_movie_review_meta_box is the callback which renders the contents of the meta box
  • movie_reviews is the name of the custom post type where the meta box will be displayed
  • normal defines the part of the page where the edit screen section should be shown
  • high defines the priority within the context where the boxes should show

Step 3: Implementation of the display_movie_review_meta_box Function

This code renders the contents of the meta box. Here we have used an object variable that contains the information of each of the movie reviews displayed in the editor. Using this object we have retrieved the post ID and used that to query the database to get the associated Director's name and Rating which in turn render the fields on the screen. When a new entry is added then the get_post_meta returns an empty string which results in displaying empty fields in the meta box.

Step 4: Registering a Save Post Function

This function is called when posts get saved in the database.

Step 5: Implementation of the add_movie_review_fields Function

This function is executed when posts are saved or deleted from the admin panel. Here after checking for the type of received post data, if it is a Custom Post Type then it checks again to see if the meta box elements have been assigned values and then finally stores the values in those fields.

Step 6: Disabling the Default Custom Fields Option

While creating the custom post type we have defined a function create_movie_review. Remove the custom-fields element from the supports array because this is no longer required. Now if you save the file and open the Movie Reviews editor, you will notice two fields in the meta box named Movie Author and Movie Rating. Similarly you can add other elements too.


Creating a Custom Template Dedicated to Custom Post Types

The proper way to display custom post type data is by using custom templates for each of the custom post types. Here we shall create a template which displays all the Movie Reviews entered using the Movie Review Custom Post Type.

Step 1: Register a Function to Force the Dedicated Template

Open the Movie-Reviews.php file and add the following code before the PHP end tag. This registers a function to be called when the WordPress admin interface is visited.

Step 2: Implementation of the function

Here the code searches for a template like single-(post-type-name).php in the current theme directory. If it is not found then it looks into the plugin directory for the template, which we supply as a part of the plugin. The template_include hook was used to change the default behavior and enforce a specific template.

Step 3: Create the Single Page Template File

After saving the previously opened plugin file, create another PHP file named single-movie_reviews.php and put the following code in it.

Here we have created a basic page template using the loop. The query_posts function retrieves the custom post type elements and displays them using the loop. Of course it is just a basic loop and you can play with it as you want. You can also use proper CSS styles to format the elements accordingly.

Note: You need to create a new page from the dashboard using the newly created template.

Step 4: Images

You need to save two images of star icons 32x32 pixels in your plugin folder. Name them icon.png and grey.png respectively. That's all, now the movie reviews are displayed on a single page sorted by date.

In my next tutorial I shall cover more features of the Custom Post Types like creating an archived page, creating custom taxonomies, custom columns etc. Please feel free to provide your valuable suggestions.

And don't forget, if you're having trouble doing this manually, you could consider the simple plugin solution.

Or, if you need help with any aspect of WordPress, try ordering the cost-effective WordPress support services on Envato Studio. Here are a few examples:

1. Remote Support Session (1 hour max.)

Get an hour of dedicated one-on-one help from a WordPress expert. For just $50, you can get a wide range of issues solved quickly and easily.

Remote Support Session

2. Express Wordpress, Themes or Plugins Updates to Latest Version

This service will give you peace of mind when upgrading your themes or plugins to the latest version. You'll get solid support on all kinds of different themes and plugins, so you can be sure that your site will run smoothly.

Express Wordpress Themes or Plugins Updates to Latest Version

3. Premium Wordpress Restoration (Broken Website)

Do you have a broken WordPress website? This experienced WordPress developer will restore your website in a timely matter, fixing all kinds of issues including:

  • Fix "white screen of death".
  • Fix database connection errors.
  • Fix PHP errors (e.g. memory limits). 
  • Restore websites from older backups.
  • Fix upgrading errors.
  • Clean websites (malware/viruses).
Premium Wordpress Restoration

4. WordPress Consulting

After working with WordPress for many years, UK developer Ryan Carter has become an expert on the CMS. If you need advice on the best way to achieve things in WordPress, you can book an hour of Ryan's time to screenshare and discuss your goals and how to achieve them.

Tags:

Comments

Related Articles