- 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>
9 lines
353 B
PHP
Executable File
9 lines
353 B
PHP
Executable File
<?php
|
|
// Disable WP site health test for automatic updates
|
|
// This plugin was added by Installatron because Installatron is handling upgrading of this application
|
|
function my_filter_site_status_tests($tests) {
|
|
unset($tests['async']['background_updates']);
|
|
return $tests;
|
|
}
|
|
add_filter('site_status_tests', 'my_filter_site_status_tests');
|