PluginProbe
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses / 4.3.7
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses v4.3.7
4.4.6 4.4.5 4.4.4 4.4.3 4.4.2 4.4.1 4.4.0 4.3.9.1 4.3.9 4.3.8 4.3.7 4.1.6.9 4.1.6.9.1 4.1.6.9.2 4.1.6.9.3 4.1.6.9.4 4.1.7 4.1.7.1 4.1.7.2 4.1.7.3 4.1.7.3.1 4.1.7.3.2 4.2.0 4.2.1 4.2.1.1 All 137 releases
learnpress / uninstall.php

uninstall.php in LearnPress – WordPress LMS Plugin for Create and Sell Online Courses 4.3.7, at uninstall.php

18 lines 353 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Uninstall LearnPress.
4 *
5 * Scope-limited cleanup for MCP capability.
6 */
7
8 defined( 'WP_UNINSTALL_PLUGIN' ) || exit;
9
10 $admin = get_role( 'administrator' );
11 if ( $admin ) {
12 $admin->remove_cap( 'lp_mcp_access' );
13 }
14
15 global $wpdb;
16 $table_name = $wpdb->prefix . 'learnpress_mcp_api_keys';
17 $wpdb->query( "DROP TABLE IF EXISTS {$table_name}" );
18