Most custom post types in WordPress will need (or could benefit from) a unique set metaboxes for entering information.
For example, a “photography” post type might need fields for “location of photo”, “type of camera”, etc. And an “event” post type would probably need a “location” and an “event date”.
Metaboxes aren’t the easiest to set up- so I’ve written up this tutorial which shows how to add a one line field for “location” to an “event” post type.
Hopefully, you’ll be able to use this guide to add any sort of metaboxes you need.
Set Up the Post Type
If you are unfamiliar with how to set up custom post types, check out Justin Tadlock’s excellent tutorial. For this example, I am going to use a post type called “Event”, which goes in my functions.php file:
[gist id=”df39e6e3dd5ee177fee30f7e7df548d6″ file=”post-type-metaboxes.php” lines=”7-48″]
You may have your own custom post type set up completely different, but that’s fine. The important line of code for the metaboxes is ‘register_meta_box_cb’ => ‘add_events_metaboxes’- which calls the function to build the metaboxes.
You can rename the function to whatever you like, for instance ‘register_meta_box_cb’ => ‘add_photography_metaboxes’ might be better for a photography post type.
If the post type is being registered through a plugin or is one of the native post types, you can also use:
add_action( 'add_meta_boxes', 'add_events_metaboxes' );
Add Meta Box
The following code adds a metabox to the right side of the screen under the “Publish” box:
[gist id=”df39e6e3dd5ee177fee30f7e7df548d6″ file=”post-type-metaboxes.php” lines=”50-62″]
You can read the full parameters for add_meta_box in the codex. I also listed them here:
add_meta_box( $id, $title, $callback, $page, $context, $priority, $callback_args );
For the example above:
- $id is “wpt_events_location”- or the html id that will be applied to this metabox.
- $title is “Event Location”. This appears at the top of the new metabox when displayed.
- $callback is the function “wpt_events_location” which will load the html into the metabox.
- $page is “events”, the name of our custom post type.
- $context is “side”. If you wanted it to load below the content area, you could put “normal”.
- $priority controls where the metabox will display in relation to the other metaboxes. You can put “high”, “low” or “default”.
If you wanted to have two sets of metaboxes, perhaps one on the side and one below the content area, you could do something like this (Note: Don’t use this if you’re following the tutorial step by step, this is just an example of how it would be done):
[gist id=”df39e6e3dd5ee177fee30f7e7df548d6″ file=”post-type-metaboxes.php” lines=”64-87″]
You’d then have to make sure the two function wpt_events_date and wpt_events_location were defined to call the html code to go inside the metaboxes.
Generating the HTML for the Metabox
Continuing with the first example above, we’ll now have to generate the code that goes inside our “Event Location” metabox. To keep this as simple as possible, we’re just going to make one field:
[gist id=”df39e6e3dd5ee177fee30f7e7df548d6″ file=”post-type-metaboxes.php” lines=”89-104″]
At this point you should have a metabox showing up in your post. If you check your “events” post type, it should load on the right side like in the screenshot I posted. This will generate any html you choose, so, you could put as many input fields in here as you like, or html descriptions.
In order to class the inputs and descriptions correctly, check out the source code for other write panels in WordPress. See how they do textareas and select boxes. You can even add icons and generated text in these spots.
Saving
If you had tried to save your metabox data before this point, it just would have disappeared on the refresh because it wasn’t being saved. Here’s the code that updates the metabox when you click “Update”:
[gist id=”df39e6e3dd5ee177fee30f7e7df548d6″ file=”post-type-metaboxes.php” lines=”106-151″]
This code checks to make sure the user has privileges to update the post, then saves the data that’s in the event_location field.
Other Resources
If you need to add a lot of custom meta fields (especially more complex ones like date pickers, file uploaders, etc) you may want to consider using a library like CMB2 or Advanced Custom Fields.
I also created a boilerplate plugin for a team post type with metaboxes if you’d like to view the code for that.
All the code for this post is here. Please share and enjoy.
I manage to get the above working.
Just checking, have you managed to use this method to create a image upload box?
I’m just thinking whether it’s possible to use this method to create a box that is use solely for uploading special thumbnail images which are already not on featured image or header .
You might want to try out this plugin: http://wordpress.org/extend/plugins/multiple-post-thumbnails/
Great Article! helped me get a jumpstart on the custom post types and custom meta boxes side of things.
this is a good article, however im unsure about something. when applying more than one metabox, the first metabox has a callback which is not valid.
wpt_events_location is an existing function, but wpt_events_date doesnt exist. do i add another function for the first meta box? or do i give the first metabox the same callback as the second metabox?
when applying your multi field example it should give an error about no existing call back for the first meta box. am i mistaking?
// Add the Events Meta Boxes
function add_events_metaboxes() {
add_meta_box(‘wpt_events_date’, ‘Event Date’, ‘wpt_events_date’, ‘events’, ‘side’, ‘default’);
add_meta_box(‘wpt_events_location’, ‘Event Location’, ‘wpt_events_location’, ‘events’, ‘normal’, ‘high’);
}
Thanks for this tutorial Devin.
Now that I’ve created this meta box, how do I add it to my CPT overview screen with its contents?
So far, I haven’t been able to find a snippet that specifically works for this.
You can look at how I added a featured image to the columns here: https://github.com/devinsays/portfolio-post-type/blob/master/portfolio-post-type.php
It should be fairly similar.
Yep – I ended up using that as a guide so thanks!
I know this is old, but for others who may find this article and want to add their custom field data to the Overview Screen, a great plugin (free) I found is: “Admin Columns” (admincolumns.com)
There is a pro version, but the free version did what I needed, and it does it BEAUTIFULLY!
Ok … I’m back and I’m certain there are no typos this time.
Here’s my code: http://pastebin.com/2bE6akPb
The data is being stored in the database meta for the custom post type, and I can display it on the single output, but it is not displaying in the text box area on the edit post screen.
Would you be so kind as to have a look and let me know what I’m doing wrong?
Great tutorial!
@Marj Wayatt: Make sure you have all your variable and function names correctly. The example does work. It worked for me. But I was having trouble saving initially also and found out that I was not using my array’s name, but the one from the example (‘$events_meta), in the foor loop. Changing that fixed the problem.
Check your code.
I actually got the problem resolved before Thanksgiving. I can’t recall what the problem was, exactly, but the working code is here:
http://pastebin.com/2bE6akPb
If I wanted to take the custom metabox values and save them to a custom taxonomy, is it as simple as replacing
update_post_meta();
withupdate_post_terms();
? I’ve done something very similar to what you’re doing here, but with taxonomies and can’t get them to save properly.Why wouldn’t you just register the taxonomy and let the user select them? http://codex.wordpress.org/Function_Reference/register_taxonomy
Hi Devin,
Great tutorial on this, worked perfect for me. I’m having one issue that I can’t quite figure out. How can I add the capability to output shortcodes in my meta field? (With your template display code I do get a result, but it’s my slider shortcode in brackets…)
I’ve tried it like this:
post->ID;
if get_post_meta($postid, '_location', true);
echo do_shortcode(get_post_meta($postid, '_location', $single = true));
?>
and like this with my meta box name wpt_project_slider:
ID, 'wpt_project_slider', true))
echo do_shortcode(get_post_meta($post->ID, 'wpt_project_slider', $single = true));
?>
In both instances, I get nothing! I would greatly appreciate the help.
I’m not sure. Looks like it would work to me.
Is it possible to use already installed options framework plugin to generate HTML for fields for these meta boxes?
No. You could use this one though if you want a framework: http://www.billerickson.net/wordpress-metaboxes/
This is working very well for me, thank you! Do you know how I might incorporate the use of a select dropdown field in a meta box instead of a text input field?
I need to implement a Select Dropdown as well. Please Help?
I ended up abandoning the above instructions and instead followed the guide here so I was able to implement the select drop-down, etc. Works perfectly for me. See section 7.3 specifically.
Thanx man, very useful tutorial
It works great but it shows “Page not found” when you click “view this page”.
I did re-save permalinks on setting. but it doesn’t seem to be working.
When I put this …
‘rewrite’ => array(‘slug’ => ‘event’,’with_front’ => FALSE),
the title is saying “Page not found” and showing “Hello world page”. it’s wordpress default page.
Any tips?
Hello,
I have a real estate website that I want to have a custom field in the custom post type (property) in the theme I am using.
The field just needs to be a plain text box where I can input the property information that I want for ADMIN/USERS EYES ONLY.
The backend field needs to be completely hidden from anyone who is not logged in, not in the source code or anything…..
Could you tell me how to get this done? Thanks
It would need to be in the theme source code- which is not available to people who are not logged in or have not downloaded your code.
Adding combo box in meta tag may helpful, This article may useful for those who want to add combo box in meta area.
http://buffercode.com/simple-technique-add-custom-meta-box-wordpress-admin-dashboard/
nice post, I am having trouble removing date meta box for a specific post type..
I want to remove the date metabox form single page..
the code below does not work
remove_meta_box(‘submitdiv’, ‘acmeproduct’, ‘normal’);
Yes!! Thank you, this worked great for me! Now I’m going to mod it slightly to use it to create relations between custom posts. Thanks again.
Unfortunately didn’t work for me, no Event Location box below Publish. Copied the code as is but no meta box.
This is still working as of 3.8.1! Should be part of WP. Anywho, I’m looking for a way to get private custom posts into a menu. I either need the ability to allow private custom post types to show by default in these meta boxes or implement a search function in the meta box. Anyone got any ideas / direction? I can’t find anything…
You can do a WP_Query to pull private posts of a certain post type. I’d save the data in a transient option- but then you can display it out in a select box.
Great write-up! I just have one issue, I’m getting this error:
Undefined index: curl_noncename in /home/newcys/public_html/wp-content/themes/cys/functions.php on line 271
When I save the post, it saves, and the error no longer appears. It’s there though every time I go to create a new post.
I actually got it resolved. I added:
wp_nonce_field( 'the_custom_url', 'curl_noncename' );
In the meta box creation function. I found that in the example from the Codex you linked to:
http://codex.wordpress.org/Function_Reference/add_meta_box
Thanks!
Thanks Dev. It help me for my Product post_type
Thanks for posting it.
It was really helpful
Excellent tutorial. Extremely well documented and useful.
Thanks for the tutorial. Mine works well except that it gives me a warning due to missing 2 params.
Instead of:
add_action(‘save_post’, ‘wpt_save_events_meta’, 1, 2); // save the custom fields
What I have is
add_action(‘save_post’, ‘wpt_save_events_meta’); // save the custom fields
I understand that ‘1’ and ‘2’ refer to post_id and post. Why are they being hardcoded there?
I found that here https://github.com/devinsays/team-post-type/blob/master/includes/class-post-type-metaboxes.php the numbers are changed to ’10’ and ‘2’
I’m very new to wordpress so thanks in advance for the enlightenment.
I found this to be very useful for showing the events on the archive pages in addition to your script:
function wpse_category_set_post_types( $query ){
if( $query->is_category() && $query->is_main_query() ){
$query->set( ‘post_type’, array( ‘post’, ‘events’) );
}
}
add_action( ‘pre_get_posts’, ‘wpse_category_set_post_types’ );
This fixed my problem. Thanks. :)
Thank you, works like a charm!
Thanks!
I’ve been playing script kiddy with WordPress all night.
I’ve setup custom post meta boxes a few times but this tutorial was very clear and keept just the info I needed.. I got it done in less than 20 minutes!
How to create custom category type meta box?
Ii i select job type IT, then specific meta box will show.. and again when i select another job type then another meta box will shoe.
Hi . This is great tutorial. It works fine but there is one issue. I can not save the meta box values. After saving the post it does not save. How to solve this issue?
where will be the data of custom fields values saved? im not getting the values on template.
How can you automatically hide meta boxes that aren’t essential by default?
I want to create custom content type with custom fields like Emp Name, Emp ID, Emp Salary, Emp Designation and print these posts in a table formate.
Like header (All the Keys ie emp name, emp id etc) and repeated values while loop.
A repeater field might be best for something like that. Unless you’re set on custom coding it, both Advanced Custom Fields and CMB2 have great options for that.
Hi, if you check by activating debug TRUE from wp-config file, you will get “Undefined index”… error notice while adding any new post. I think codes need to update to work better in latest wordpress version
Man, I looked for this on the internet, I didn’t understand anything til I came here. Now my metaboxes are shining into my custom posts thanks to you :D
Thank you Devin
Is it possible to add the meta boxes to the Custom Post Type, and also WordPress’s native posts?
Yes, just pass an array in for the $screen parameter with the post types when you add the meta box: https://developer.wordpress.org/reference/functions/add_meta_box/
i.e. array( ‘post’, ‘event’);
It won’t save. Cries.
Here’s a ugly gist https://gist.github.com/reinnovating/dfbc9f4767b22edb996b3657aeb156e6
How about adding †he box to a Edit Category page? Is there a easy way to do this using the 4th parameter for add_meta_box?