Commit inicial - WordPress Análisis de Precios Unitarios

- 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>
This commit is contained in:
root
2025-11-03 21:04:30 -06:00
commit a22573bf0b
24068 changed files with 4993111 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
<?php
/**
* Fired when the plugin is uninstalled.
*
* @link https://duckdev.com/products/loggedin-limit-active-logins/
* @license http://www.gnu.org/licenses/ GNU General Public License
* @category Core
* @package Loggedin
* @subpackage Uninstall
* @author Joel James <me@joelsays.com>
*/
// If uninstall not called from WordPress, then exit.
defined( 'WP_UNINSTALL_PLUGIN' ) || exit;
// Delete all options added by the plugin.
delete_option( 'loggedin_maximum' );
delete_option( 'loggedin_rating_notice' );
global $wpdb;
// Delete all meta values added by the plugin.
// phpcs:ignore
$wpdb->delete(
$wpdb->usermeta,
array(
// Review notice meta.
// phpcs:ignore
'meta_key' => 'loggedin_rating_notice_dismissed',
)
);