Themes
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.
Premium
Revolution Two: Church Theme
Benefits include the Church theme, unlimited theme support answered by our experts, customization techniques with our detailed theme tutorials and professional design services available by our list of recommended designers.

Price:
Single License: $59.95 Buy Now!
Pro Plus All-Theme Package: $199.95 Buy Now!
Premium
Revolution Two: Chrome Theme
Benefits include the Chrome theme, unlimited theme support answered by our experts, customization techniques with our detailed theme tutorials and professional design services available by our list of recommended designers.

Price:
Single License: $59.95 Buy Now!
Pro Plus All-Theme Package: $199.95 Buy Now!
Premium
Revolution Two: Black Canvas
Benefits include the Black Canvas theme, unlimited theme support answered by our experts, customization techniques with our detailed theme tutorials and professional design services available by our list of recommended designers.

Price:
Single License: $59.95 Buy Now!
Pro Plus All-Theme Package: $199.95 Buy Now!
-
Tips & Tricks4 months ago
WordPress Security Hacks
-
Pages7 months agoWrite For Us – Guest Post
-
Showcase2 months ago
StylizedWeb.com
-
News6 months ago
How to: Show/Hide any div box with jQuery in WordPress
-
Plugins3 months agoTop Membership plugins
-
Guest Post3 months ago
The Top 10 Best Free Android Retro Games of all time
-
Tips & Tricks6 months ago
Remove the title attribute using jQuery
-
Tips & Tricks3 months ago
How to: show/hide a widget in WordPress with jQuery
