Categories: ThemesTips & Tricks

Add additional meta boxes to Hybrid Theme

At the time of writing this post I have Theme Hybrid as my parent theme, and am using a custom version of Hybrid News that Justin Tadlock offers to the public.

Well I want to tell you how you can add additional custom meta boxes to your child theme’s running the Hybrid Theme.

In your child function.php file just add the following to create a new post meta box:

/**
* Add additional post meta boxes
*
* by WPCult
*/function wpcult_post_meta_boxes($meta_boxes) {
 $meta_boxes['image'] = array(
  'name' => 'image',
  'default' => '',
  'title' => __('Image:'),
  'type' => 'text',
  'show_description' => false,
  'description' => __('Please use a full size image, larger than 500px (this photo will dynamically re-size itself!'),
 );
 return $meta_boxes;
}
add_filter('hybrid_post_meta_boxes', 'wpcult_post_meta_boxes');

This will create a custom meta box called Image, and will create a custom field with the id of image.

Additionally you can create this on pages as well by copy/paste and replacing “post_meta_box” with “page_meta_box” every where inside the function.

Web Master

Hi, I am Miguel, I bought this site in 2009. So I now run or manage the site. Please visit my new website or follow me on twitter @W3i.

Recent Posts

Can′t add pagination on WooThemes Thick Theme

Everything I have tried has led to nothing. And I have tried six way's from…

16 hours ago

Pulling custom fields from outside the loop

In the last post "Creating a custom widget" I showed you how to create a…

1 day ago

Creating a custom widget

Today let's learn a simple quick trick on how to create a custom widget. For…

2 days ago

Display custom url if comment authors url is blank

Here is a nifty trick for your comments.php template. If someone comes to your site…

2 days ago