# printfriendly/3.11.2/uninstall.php

Print, PDF &amp; Email by PrintFriendly, version 3.11.2. 21 lines.

- Page: https://pluginprobe.com/plugins/printfriendly/3.11.2/code/uninstall.php
- Raw: https://pluginprobe.com/plugins/printfriendly/3.11.2/raw/uninstall.php
- Modified: 2013-03-19T22:41:40+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/printfriendly/3.11.2/code/uninstall.php#L10-L20`.

```php
<?php

if( !defined( 'ABSPATH' ) && !defined( 'WP_UNINSTALL_PLUGIN' ) )
    exit();
 
delete_option( 'printfriendly_option' );

// Make sure any old options which may still lurking about get deleted as well
delete_option( 'pf_button_type' );
delete_option( 'pf_custom_image' );
delete_option( 'pf_custom_text' );
delete_option( 'pf_custom_both' );
delete_option( 'pf_show_list' );
delete_option( 'pf_content_placement' );
delete_option( 'pf_content_position' );
delete_option( 'pf_margin_top' );
delete_option( 'pf_margin_right' );
delete_option( 'pf_margin_bottom' );
delete_option( 'pf_margin_left' );
delete_option( 'pf_text_color' );
delete_option( 'pf_text_size' );
```
