- This topic has 1 reply, 2 voices, and was last updated 6 years, 1 month ago by .
-
Topic
-
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>'; }
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘callbacks’ is closed to new replies.