| 1 |
<?php |
| 2 |
|
| 3 |
if( !defined( 'ABSPATH' ) && !defined( 'WP_UNINSTALL_PLUGIN' ) ) |
| 4 |
exit(); |
| 5 |
|
| 6 |
delete_option( 'printfriendly_option' ); |
| 7 |
|
| 8 |
// Make sure any old options which may still lurking about get deleted as well |
| 9 |
delete_option( 'pf_button_type' ); |
| 10 |
delete_option( 'pf_custom_image' ); |
| 11 |
delete_option( 'pf_custom_text' ); |
| 12 |
delete_option( 'pf_custom_both' ); |
| 13 |
delete_option( 'pf_show_list' ); |
| 14 |
delete_option( 'pf_content_placement' ); |
| 15 |
delete_option( 'pf_content_position' ); |
| 16 |
delete_option( 'pf_margin_top' ); |
| 17 |
delete_option( 'pf_margin_right' ); |
| 18 |
delete_option( 'pf_margin_bottom' ); |
| 19 |
delete_option( 'pf_margin_left' ); |
| 20 |
delete_option( 'pf_text_color' ); |
| 21 |
delete_option( 'pf_text_size' ); |