下面是一些代码,我有元盒,有这个限制像一个单一的页面模板任何特定的方式template-servicesinner.php
或page-plain.php
?
$prefix = 'tga_';
$meta_boxes[] = array(
'id' => 'project-box-1', // meta box id, unique per meta box
'title' => 'Project Box 1', // meta box title
'pages' => array('page'), // post types, accept custom post types as well, default is array('post'); optional
'context' => 'normal', // where the meta box appear: normal (default), advanced, side; optional
'priority' => 'high', // order of meta box: high (default), low; optional
'fields' => array(
array(
'name' => 'Review thumbnail',
'desc' => 'Only insert a thumbnail for you review here if you are showing reviews on the homepage (thumbnail should be at least 600x300px). Insert full path to the image, eg. http://yoursite.com/thethumb.jpg',
'id' => $prefix . 'review_thumb',
'type' => 'text',
'std' => ''
),