2013-12-08 3 views

답변

0

당신은

<?php 
     add_action('add_meta_boxes', 'add_custom_metaboxes'); 
?> 

추가 메타 박스 add_meta_box() 기능을 사용하여 사용자 지정 게시 유형의 메타 상자를 추가 할 수 있습니다 : -

<?php 
    // Method for add metaboxes. 
    function add_custom_metaboxes() { 
     add_meta_box('meta_box_id', 'Meta Box title', 'your_callback_function', 'custom_post_type', 'side', 'default'); 
    } 

Metabox 옵션에 대한 HTML을 생성 : -

<?php 
function your_callback_function() { 
     global $post; 
    // Code for your metabox fields goes here. 
} 
?> 

일부 참조 링크 : -
http://wptheming.com/2010/08/custom-metabox-for-post-type/
http://wp.smashingmagazine.com/2011/10/04/create-custom-post-meta-boxes-wordpress/

관련 문제