- WordPress core y plugins - Tema Twenty Twenty-Four configurado - Plugin allow-unfiltered-html.php simplificado - .gitignore configurado para excluir wp-config.php y uploads 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
18 lines
263 B
PHP
Executable File
18 lines
263 B
PHP
Executable File
<?php
|
|
/**
|
|
* Remove Dashboard Access Uninstall
|
|
*
|
|
* @since 1.0
|
|
*/
|
|
$settings = array(
|
|
'rda_access_switch',
|
|
'rda_access_cap',
|
|
'rda_redirect_url',
|
|
'rda_enable_profile',
|
|
'rda_login_message'
|
|
);
|
|
|
|
foreach ( $settings as $setting ) {
|
|
delete_option( $setting );
|
|
}
|