Hi,
To show a list of a post type, please use the custom query with WP Query and add the helper function rwmb_meta()
in the loop to get the field value. For example:
// The Query
$the_query = new WP_Query( $args );
// The Loop
if ( $the_query->have_posts() ) {
echo '<ul>';
while ( $the_query->have_posts() ) {
$the_query->the_post();
echo '<li>' . get_the_title() . '</li>';
echo rwmb_meta( 'course', '', get_the_ID() );
}
echo '</ul>';
}
wp_reset_postdata();
Read more on the documentation https://developer.wordpress.org/reference/classes/wp_query/