wpsnipp: update_post_meta example2

$post_id = 25;
// Update our subtitle
$meta_value = 'The Greatest Post Ever Written';
update_post_meta( $post_id, 'wpsnipp_post_subtitle', $meta_value );

// Update our "show social links?" meta
// We could save this as true or false
update_post_meta( $post_id, 'wpsnipp_show_social', true );