Post meta is not accessible within save_post hook

admin2025-06-05  3

I am using this code to update post meta but it is not working.

function run_when_job_published( $post_id, $post, $update){
   $post_meta = get_post_meta($post_id);
}
add_action('save_post_jobs', 'run_when_job_published', 10, 3);

But here in this function $post_meta is returning an empty array. Actually I want to update one of the meta field during post insertion but I think it is not possible with this hook. I have also tried publish_post hook but in my scenario it is not working. Any suggestion will be much appreciated. Thank you!

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1749077279a316163.html

最新回复(0)