Advertisement
Guest User

Untitled

a guest
Jul 24th, 2011
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. wp_enqueue_script( array("jquery", "jquery-ui-core", "interface", "jquery-ui-sortable", "wp-lists", "jquery-ui-sortable") );
  2.  
  3. // Drag and drop attachments
  4. add_action('admin_head', 'dragndrop');
  5.  
  6. function dragndrop() { ?>
  7. <script type="text/javascript">
  8. //<![CDATA[
  9. jQuery(document).ready(function() {
  10. jQuery('#attachmentcontainer').sortable();
  11. });
  12. //]]>
  13. </script>
  14. <?php
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement