red-made opened this issue a year ago · 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);
carbon_get_the_post_meta($post_id, 'pdf');
get_post_meta($post_id, '_pdf', true);
Why does this happen?