2013-12-08 31 views

回答

0

您可以通過使用add_meta_box()功能

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

加入meta框添加自定義職位類型元框: -

<?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/