Dashboard
PHP:
8.4.23
OS:
Linux
User:
unknown
/
/
hosting
/
www
/
humoyoxido.com
/
public
/
wp-content
/
plugins
/
link-factory
đ€ Upload
đ New File
đ New Folder
Close
Editing: uninstall.php
<?php /** * Fires when the Link Factory plugin is deleted via wp-admin. * * Drops the sentences table so a subsequent reinstall starts from a clean slate. * * @package LinkFactory */ if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) { return; } global $wpdb; $table_name = $wpdb->prefix . 'link_factory_sentences'; $wpdb->query( "DROP TABLE IF EXISTS {$table_name}" );
Save
Cancel