Server : Apache System : Linux pod-100823:apache2_74:v0.5.7 5.4.0-1138-gcp #147~18.04.1-Ubuntu SMP Mon Oct 7 21:46:26 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33.7 Disable Function : apache_child_terminate,apache_get_modules,apache_get_version,apache_getenv,apache_note,apache_setenv,disk_free_space,disk_total_space,diskfreespace,dl,exec,fastcgi_finish_request,link,opcache_compile_file,opcache_get_configuration,opcache_invalidate,opcache_is_script_cached,opcache_reset,passthru,pclose,pcntl_exec,popen,posix_getpid,posix_getppid,posix_getpwuid,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_uname,proc_close,proc_get_status,proc_nice,proc_open,proc_terminate,realpath_cache_get,shell_exec,show_source,symlink,system Directory : /nas/content/live/attorneyexperi/wp-content/plugins/blog-designer/ |
<?php /** * Fired when the plugin is uninstalled. * * @package Blog Designer */ // If uninstall not called from WordPress, then exit. if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) { exit; } $bd_unintall_data = get_option( 'bd_unintall_data', 0 ); if ( 1 == $bd_unintall_data ) { delete_option( 'posts_per_page' ); delete_option( 'display_sticky' ); delete_option( 'display_category' ); delete_option( 'social_icon_style' ); delete_option( 'rss_use_excerpt' ); delete_option( 'template_alternativebackground' ); delete_option( 'display_tag' ); delete_option( 'display_author' ); delete_option( 'display_date' ); delete_option( 'social_share' ); delete_option( 'facebook_link' ); delete_option( 'twitter_link' ); delete_option( 'linkedin_link' ); delete_option( 'pinterest_link' ); delete_option( 'display_comment_count' ); delete_option( 'excerpt_length' ); delete_option( 'display_html_tags' ); delete_option( 'read_more_on' ); delete_option( 'read_more_text' ); delete_option( 'template_titlefontsize' ); delete_option( 'content_fontsize' ); delete_option( 'wp_blog_designer_settings' ); delete_option( 'blog_page_display' ); delete_option( 'custom_css' ); delete_option( 'is_user_subscribed_cancled' ); delete_option( 'bd_version' ); delete_option( 'bd_is_optin' ); delete_option( 'bd_unintall_data' ); }