2, 'show_summary' => true)); } function ceo_add_dashboard_widgets() { wp_add_dashboard_widget('ceo_dashboard_widget', 'Frumph.NET News', 'ceo_dashboard_feed_widget'); } // ajax stuff // if both logged in and not logged in users can send this AJAX request, // add both of these actions, otherwise add only the appropriate one // add_action( 'wp_ajax_nopriv_ceo_comic_upload', 'myajax_submit' ); add_action( 'wp_ajax_ceo_uploader', 'ceo_comic_upload' ); function ceo_comic_upload() { require_once('functions/uploader.php'); $result = ceo_handleUpload(); // to pass data through iframe you will need to encode all html tags echo htmlspecialchars(json_encode($result), ENT_NOQUOTES); exit; } ?>