custom tabs in media uploader

found it.
in the automattic SVN for media.php i found the media_upload_header() function, and the only thing left to do is to echo it in the last function:

function media_upload_ell_gmap_form() {
    echo media_upload_header();
    ?>
    <h2>HTML Form</h2>

<?php
}

that’s it.

Leave a Comment