Is it possible to access post custom fields inside of plugin function
that hooks into wp_head?
Here's my code (however $post_ID isn't being returned):
global $post_ID;
$cstm = get_post_meta($post_ID, '_cstm', true);
if ($cstm != '') {
// stuff
}
Thanks
Damian