I am using the following code in functions.php
for adding a custom meta box.
The custom post type is themes
. I want to add more post types, how can I?
add_meta_box(
'my-meta-box-id',
'Demo & Download',
'cd_meta_box_cb',
'themes',
'normal',
'high'
);
Whenever in doubt about a WordPress function, consult the Codex.
http://codex.wordpress.org/Function_Reference/add_meta_box
There, you’ll see that you need to add one meta box to each post type.