diff --git a/friendly-captcha/includes/core.php b/friendly-captcha/includes/core.php
index 05da8fe..7f54922 100644
--- a/friendly-captcha/includes/core.php
+++ b/friendly-captcha/includes/core.php
@@ -238,6 +238,14 @@ class FriendlyCaptcha_Plugin
"entry" => "divi/divi.php",
"settings_description" => "Enable Friendly Captcha and replace ReCaptcha in the Divi Theme contact form.
Important: Please choose 'FriendlyCaptcha verification' as spam protection in each individual Divi contact form.",
),
+ array(
+ "name" => "WP Job Openings",
+ "slug" => 'wp_job_openings',
+ "entry" => "wp-job-openings/wp-job-openings.php",
+ "plugins" => array("wp-job-openings/wp-job-openings.php", "pro-pack-for-wp-job-openings/pro-pack.php
+"),
+ "settings_description" => "Enable Friendly Captcha for the WP Job Openings application form.",
+ ),
);
public function init()
diff --git a/friendly-captcha/modules/wp-job-openings/index.php b/friendly-captcha/modules/wp-job-openings/index.php
new file mode 100644
index 0000000..bacffcc
--- /dev/null
+++ b/friendly-captcha/modules/wp-job-openings/index.php
@@ -0,0 +1 @@
+is_configured() ) {
+ return;
+ }
+
+ // Load scripts
+ frcaptcha_enqueue_widget_scripts();
+
+ // Output Friendly Captcha widget HTML
+ echo frcaptcha_generate_widget_tag_from_plugin( $plugin );
+
+ // Optional: style fix
+ echo '';
+}
\ No newline at end of file