/**
 * Deactivate Autoremove Attachments.
 *
 * Code that runs during the plugin deactivation.
 *
 * @since 1.0.0
 * @param bool $network_wide Boolean value with the network-wide activation status.
 */
function deactivate_autoremove_attachments($network_wide)
{
    require_once AUTOREMOVE_ATTACHMENTS_DIR_PATH . 'includes/class-autoremove-attachments-deactivator.php';
    Autoremove_Attachments_Deactivator::deactivate($network_wide);
}