meta box on custom post type

Question

Okay I have look on the site and need more help! I am adding Learndash to my site and need a meta box to show on their custom post type pages.

Here is the meta box code I have which works fine for just normal posts;

    // META

$prefix = 'dbt_';
$meta_box = array(
    'id' => 'my-meta-box',
    'title' => 'Post Customization',
    'page' =>  'post', 
    'context' => 'normal',
    'priority' => 'high',
    'fields' => array(
        array(
            'name' => 'Post Color',
            'id' => $prefix . 'color',
            'type' => 'select',
            'options' => array('orange', 'pink', 'green', 'purple')
        ),
        array(
            'name' => 'Image URL',
            'desc' => 'Optional',
            'id' => $prefix . 'img-url',
            'type' => 'text',
            'std'  => 'Image'
        ),
        array(
            'name' => 'Video URL',
            'desc' => 'Optional',
            'id' => $prefix . 'video-url',
            'type' => 'text',
            'std'  => 'Video'
        ),
        array(
            'name' => 'Link URL',
            'desc' => 'Optional',
            'id' => $prefix . 'link-url',
            'type' => 'text',
            'std'  => 'Link'
        ),
     )
);

add_action('admin_menu', 'mytheme_add_box');

Now how do I get it to show on all the following post types;

sfwd-courses
sfwd-lessons
sfwd-topics

Replacing 'page' => 'post', with 'page' => 'sfwd-courses', shows the meta box on the courses page but not normal posts.

I thought the following should work but does not…

'page' => 'post', 'sfwd-courses', 'sfwd-lessons', 'sfwd-topics',

Please help…

0
, aled2305 4 years 2020-03-26T16:52:46-05:00 0 Answers 198 views 0

Leave an answer

Browse
Browse