new WPAlchemy_MetaBox(array
(
\'id\' => \'_custom_meta\',
\'title\' => \'My Custom Meta\',
\'template\' => STYLESHEETPATH . \'/custom/meta.php\',
\'exclude_template\' => \'product.php\'
));
“exclude\\u模板”可用于排除您不想要的模板。
new WPAlchemy_MetaBox(array
(
\'id\' => \'_custom_meta\',
\'title\' => \'My Custom Meta\',
\'template\' => STYLESHEETPATH . \'/custom/meta.php\',
\'include_template\' => array(\'product.php\',\'press.php\') // use an array for multiple items
// \'include_template\' => \'product.php,press.php\' // comma separated lists work too
));
包括相同的工程。
以下是您如何仅按post-ID包含(如果您是为客户设计此项,我不会这样做,他们往往会在周中之前破坏post-ID)。
\'include_post_id\' => 97
这里有一个链接:
http://www.farinspace.com/wpalchemy-metabox/#filter