14 lines
		
	
	
		
			273 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			273 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| if ( ! defined( 'ABSPATH' ) ) {
 | |
| 	// Exit if accessed directly
 | |
| 	exit;
 | |
| }
 | |
| 
 | |
| if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
 | |
| 	// This constant gets set when WordPress' uninstall.php file is invoked.
 | |
| 	exit;
 | |
| }
 | |
| 
 | |
| // Put logic here to undo things when this plugin is uninstalled.
 |