Как сделать мета-поля WordPress конкретными для шаблона страницы?

Ниже приведен код, который у меня есть для мета-ящиков, есть ли какой-либо конкретный способ ограничить это одним шаблоном страницы, например 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' => '' ),