Disable Pods Shortcode button in Post Editor

Use a filter to hide the Pods Shortcode button

If you need to hide the Pods Shortcode button on the Post Editor, the easiest way is with this filter:

add_action( 'admin_init', 'remove_pods_shortcode_button', 14 );

function remove_pods_shortcode_button () {
    remove_action( 'media_buttons', array( PodsInit::$admin, 'media_button' ), 12 );
}

Questions