add_action('wp_ajax_generate_meta_description', 'generate_meta_description'); add_action('wp_ajax_nopriv_generate_meta_description', 'generate_meta_description'); // Allows non-logged-in users function generate_meta_description() { if (!isset($_POST['topic']) || empty($_POST['topic'])) { echo "Error: Topic is missing."; wp_die(); } $topic = sanitize_text_field($_POST['topic']); // Secure input $meta_description = "Discover the best insights about " . $topic . ". Get expert knowledge now!"; echo $meta_description; // Send response to AJAX wp_die(); // Always end with wp_die() in WP AJAX } function load_custom_scripts() { wp_enqueue_script('jquery'); // Ensure jQuery is loaded } add_action('wp_enqueue_scripts', 'load_custom_scripts'); Blogs - Pivot Consultants
Open chat
Hello,
How can I help you?