feature: Initial commit

This commit is contained in:
Keith Solomon
2026-04-13 20:06:32 -05:00
commit 351dc06ec4
38 changed files with 8138 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
<?php
/**
* Plugin uninstall cleanup.
*
* @package LogoSoup
*/
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
exit;
}
$settings = get_option( 'logo_soup_settings', array() );
if ( is_array( $settings ) && ! empty( $settings['cleanup_on_drop'] ) ) {
delete_option( 'logo_soup_settings' );
}