Advertisement
tcelestino

Add metabox multiple custom post type

Feb 28th, 2012
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.21 KB | None | 0 0
  1. add_action('edit_form_advanced', 'configMetaBox');
  2. function configMetaBox() {
  3.     global $post;  
  4.     if($post->post_type == "destaques" || $post-post_type == "noticias") {
  5.          include('meucustomfield.php');
  6.     }; 
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement