I am using the custom meta box script from deluxeblogtips.com and I wondered if I could include get_posts within this array so that it displays all posts within a set post type ("Locations" for example)
array(
'name' => 'Location', // File type: checkbox
'id' => $prefix . location',
'type' => 'checkbox',
'desc' => 'Check this box to make any links open in a new browser window',
'std' => 0 // Value can be 0 or 1
),
Obviously I'd need to be able to select as many posts as I wanted. Any help would be greatly appreciated.