Change Published Date
-
Hey! Thank you for the great plugin. I had a save_post filter that was updating the published date and now it stopped working.
add_action('acf/save_post', 'update_post_date_from_acf', 20 ); function update_post_date_from_acf($post_id) { remove_filter('acf/save_post', 'update_post_date_from_acf', 10); $post_date = get_field('update_post_date'); $post = wp_update_post(array( 'ID' => $post_id, 'post_date' => $post_date)); }Using the forms, the data is saved and everything but it’s not replacing the published date. I just want to do this to add previous clients.
Not sure if there’s a better way,
Thanks,
Joey
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘Change Published Date’ is closed to new replies.