wpsnipp: get_post_meta example2

// ... Later in your theme or plugin
// This retrieves current ID if we're in the loop
$post_id = get_the_ID();
$meta_key = 'wpsnipp_post_extra_resource_links';

// Now, let's retrieve our list of resources
$resources = get_post_meta( $post_id, $meta_key );