• Hello,
    I would like to add a box to the right of the main text box (under tags box) which just contains some text listing some values but I’m not sure where to make the changes I have looked through some of the files but cant find it.

    PugsX

Viewing 2 replies - 1 through 2 (of 2 total)
  • In your theme’s functions.php, do something like this.

    include(ABSPATH.'wp-admin/includes/template.php');
    function my_meta_box($post) {
      echo 'Hi';
    }
    add_meta_box('mydiv', __('MyDiv'), 'my_meta_box', 'post', 'side', 'core');
    Thread Starter pugsx

    (@pugsx)

    works a treat thank you 😀

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘adding box to post-new.php’ is closed to new replies.