Displaying a Custom Metabox in more than one custom post type
-
I’m probably missing something pretty basic here. I want to add the video capabilities that all posts have to pages and my ‘reviews’, and ‘videos’ post type. So I looked in the functions and found the exact line that creates the meta box in the admin,
$meta_box_video = array( ‘id’ => ‘ag-meta-box-video’, ‘title’ => __(‘Video Post Options’, ‘framework’), ‘page’ => ‘post’,
How do I add them. I tried doing this:
$meta_box_video = array( ‘id’ => ‘ag-meta-box-video’, ‘title’ => __(‘Video Post Options’, ‘framework’), ‘page’ => ‘post’, ‘reviews’, ‘videos’,
.To no avail of course. Could you steer me in the right direction?
- The topic ‘Displaying a Custom Metabox in more than one custom post type’ is closed to new replies.