2013-03-12 45 views
1

我使用此插件http://wordpress.org/extend/plugins/option-tree/來創建一些自定義元框。使用OptionTree列表項metabox

我試圖通過使用ID來嵌入多個Vimeo視頻。以下是我如何在編輯器中顯示它, - 工作,似乎數據保存沒有問題。

add_action('admin_init', 'portfolio_meta_boxes'); 
function portfolio_meta_boxes() { 
$works_meta_box = array(
'id'  => 'works_item', 
'title'  => 'Portfolio Item', 
'desc'  => 'Add your portfolio item here.', 
'pages'  => array('bkmworks'), 
'context' => 'normal', 
'priority' => 'high', 
'fields' => array(
    array(
    'id'   => 'vimeo', 
    'label'  => 'Vimeo videos', 
    'desc'  => '', 
    'std'   => '', 
    'type'  => 'list-item', 
    'rows'  => '', 
    'post_type' => '', 
    'taxonomy' => '', 
    'class'  => '', 
    'settings' => array( 
     array(
     'id'   => 'vimeo_id', 
     'label'  => 'Vimeo Video ID', 
     'desc'  => 'Insert your Vimeo video ID. Example: https://vimeo.com/<strong>57747054</strong>. Insert only the numbers in bold.', 
     'std'   => '', 
     'type'  => 'text', 
     'rows'  => '', 
     'post_type' => '', 
     'taxonomy' => '', 
     'class'  => '' 
    ) 
    ) 
) 
)); ot_register_meta_box($works_meta_box);} 

但是,我不明白如何將metabox數據顯示到列表中。我不是PHP精明的,任何幫助將不勝感激。

+0

你能舉一個你想要的例子列表輸出嗎? – 2013-03-12 20:02:08

+0

@RobertLee簡單的東西,像 '