function latest_jobs_shortcode() { global $wpdb; // External database connection $custom_db = new wpdb( 'u923435796_jobdata', '1Pkinnovatives@', 'u923435796_jobdata', 'srv1333.hstgr.io' ); // Fetch jobs $jobs = $custom_db->get_results( "SELECT * FROM jobs ORDER BY created_at DESC LIMIT 20", ARRAY_A ); // No records if (empty($jobs)) { return '

No latest jobs found.

'; } $output = '
'; foreach ($jobs as $job) { $output .= '

' . esc_html($job['title']) . '

Company: ' . esc_html($job['companyName']) . '

Location: ' . esc_html($job['location']) . '

Posted Date: ' . esc_html($job['postedDate']) . '

Apply Now
'; } $output .= '
'; return $output; } add_shortcode('latest_jobs', 'latest_jobs_shortcode');