Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 12th, 2012  |  syntax: None  |  size: 0.56 KB  |  hits: 15  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Wordpress upload media tool double iframe? How to fix?
  2. if (isset($_GET['page']) && ($_GET['page'] == 'add_images' || $_GET['page'] == 'add_slides')) {
  3.  
  4.     add_action("admin_enqueue_scripts", "load_fixedly_media_upload_header");
  5. }
  6.  
  7. function load_fixedly_media_upload_header() {
  8.  
  9.     wp_enqueue_script('media-upload');
  10.     wp_enqueue_script('thickbox');
  11.     wp_register_script('my-fixedly-upload', WP_PLUGIN_URL . '/fixedly/scripts/admin.js', array('jquery','media-upload','thickbox'));
  12.     wp_enqueue_script('my-fixedly-upload');
  13.     wp_enqueue_style('thickbox');
  14. }