get_thread_meta
Get thread meta data.
REQUIREMENTS
To be able to implement this guide, you need to learn how to insert PHP snippets to your website.
You can find guide here: WP Beginner
<?php
$thread_id = 1;
$key = 'custom_data';
$custom_data = Better_Messages()->functions->get_thread_meta( $thread_id, $key );
var_dump( $custom_data );