• Has anything changed for dbx_post_sidebar from 2.3 to 2.5?

    Some plugins (future calender, wp-mixi pulisher, etc…) used to be on the sidebar of Write Post page on 2.3 is no longer listed on 2.5

    How can we add boxes on sidebar of Write Post pages on 2.5?

Viewing 1 replies (of 1 total)
  • Use submit_postbox filter.
    eg.

    add_action('submitpost_box', 'wptp_sidebar');
    
    function wptp_sidebar() {
      echo "<p> Hello! This is test message. </p>";
    }

    ?>

Viewing 1 replies (of 1 total)
  • The topic ‘Write Page sidebar, dbx_post_sidebar problem’ is closed to new replies.