PHP WordPress - Add Media Upload Tab

<?php add_filter( 'media_upload_tabs', 'media_upload_tabs__tab_slug' ); function media_upload_tabs__tab_slug( $tabs ) { $newtab = array ( 'tab_slug' => 'Your Tab Name' ); return array_merge( $tabs, $newtab ); } add_action( 'media_upload_tab_slug', 'media_upload_tab_slug__content' ); function media_upload_tab_slug__content() { wp_iframe( 'media_upload_tab_slug_content__iframe' ); } function media_upload_tab_slug_content__iframe() { ?> <div>tab_slug: Add your content here.</div><?php }

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.