Support Forum
hello,
is it possible to use callbacks, as it is provided in the original wordpress add_meta_box function?
- add_meta_box( $id, $title, $callback, $post_type, $context, $priority, $callback_args );
( http://codex.wordpress.org/Function_Reference/add_meta_box )
or is there another possibility to use your meta box tabs plugin with custom html as a callback?
i'm using something like this for example:
add_meta_box(
'test_test',
'Testing',
'test_edit_callback',
'post'
);}
function test_edit_callback(){
//custom html / php
$this = "test";
echo '<p>'.$this.'</p>';
}