function fetch_wp_data() {
global $wpdb;
$table_name = $wpdb->prefix . "custom_form_data";
$results = $wpdb->get_results("SELECT * FROM $table_name ORDER BY id DESC");
$output = "
";
foreach ($results as $row) {
$output .= "- " . esc_html($row->name) . " - " . esc_html($row->email) . "
";
}
$output .= "
";
return $output;
}
add_shortcode('fetch_data', 'fetch_wp_data');