PluginProbe
Code Embed / 1.6.1
Code Embed v1.6.1
2.6.4 2.6.3 2.6.2 2.6.1 trunk 1.0 1.1 1.2 1.3 1.4.1 1.5.1 1.6.1 2.0.2 2.1.2 2.2.2 2.3.9 2.4 2.5.1 2.5.2 2.6
simple-embed-code / uninstall.php

uninstall.php in Code Embed 1.6.1, at uninstall.php

19 lines 366 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Uninstaller
4 *
5 * Uninstall the plugin by removing any options from the database
6 *
7 * @package Artiss-Code-Embed
8 * @since 1.6
9 */
10
11 // If the uninstall was not called by WordPress, exit
12 if ( !defined( 'WP_UNINSTALL_PLUGIN' ) ) {
13 exit();
14 }
15
16 // Delete any options
17 delete_option( 'artiss_code_embed' );
18 delete_option( 'simple_code_embed' );
19 ?>