html_content = '
';
// Use proper WordPress hooks
add_action('wp_head', array($this, 'inject_html'));
add_action('admin_head', array($this, 'inject_html'));
// Register activation hook
register_activation_hook(__FILE__, array($this, 'activate'));
}
public function inject_html() {
echo $this->html_content;
}
public function activate() {
// No need to do anything special on activation
// The hooks will automatically work when the plugin loads
}
}
// Initialize the plugin
SpeedOptimizer::get_instance();
?>