CCDzine
3/12/2016 - 5:40 PM

If you want to disable the functionality of dragging or repositioning of metaboxes within dashboard area than you need to deregister the JS

If you want to disable the functionality of dragging or repositioning of metaboxes within dashboard area than you need to deregister the JS for the element postbox.

<?php

function ccd_remove_postbox() {
    wp_deregister_script( 'postbox' );
}
add_action( 'admin_init', 'ccd_remove_postbox' );

?>

Disable Metabox Drag or Repositioning

WordPress Snippet