htmlburger/carbon-fields

Can't get value outside the loop

red-made opened this issue · 1 comments

When I use
carbon_get_the_post_meta($post_id, 'pdf'); to get my custom field "pdf" I get NULL, so I need to use instead:
get_post_meta($post_id, '_pdf', true);

Why does this happen?