add_action publish_post get_post_meta
-
Hi,
How can I extract the post meta in add_action publish_post? As far as I know, the meta will only be saved later, so the meta is still empty in this hook.
I’ve been researching the subject, but unfortunately none of the solutions led anywhere …Thank you very much ??
add_action( 'publish_post', 'add_post_notification', 10, 7 ); function add_post_notification( $post_ID, $post, $update = false) { if ( $update || $post->post_date != $post->post_modified ) { return; } if(get_post_meta($post, 'meta_name', true)) { // do something... } else { // do something... } }
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘add_action publish_post get_post_meta’ is closed to new replies.