Site logo

Archived topic

Global post in GP hooks issue?

2 replies · Started by Pete on February 7, 2015

Viewing posts 1–3 of 3

I can't get this snippet to work in the GP hooks...

<?php if( get_post_meta($post->ID, "age", true) ): ?>
Age: <?php echo get_post_meta($post->ID, "age", true); ?>
<?php else: ?>age not specified
<?php endif; ?>

I think it may have something to do with the global post thingy?

Found the fix...

Replace $post->ID with get_the_ID()

Found the solution here...

Glad you sorted it out :)

This archived topic is closed to new replies.