我已經使用選項樹框架創建了自定義元框。它顯示每個頁面。我希望它只會顯示特定頁面。我怎樣才能做到這一點?WP爲特定頁面模板定製元框
我寫了這個代碼到functions.php文件
add_action('admin_init', 'custom_meta_boxes');
function custom_meta_boxes() {
$latest_work = array(
'id' => 'latest_work',
'title' => 'latest-work Meta Box',
'desc' => '',
'pages' => array('page'),
'context' => 'normal',
'priority' => 'high',
'fields' => array(
array(
'label' => 'latest-work',
'id' => 'latest-work',
'type' => 'text',
'desc' => 'Tell about your latest work',
'std' => '',
'rows' => '',
'post_type' => '',
'taxonomy' => '',
'class' => ''
)
)
);
ot_register_meta_box($latest_work);
}
請告訴我,我該怎麼辦呢?
你是什麼意思的特定頁面? –
首頁,博客頁面,關於頁面等 – Bir
你無法檢測到管理面板中的特定頁面 –