Execute action after post is saved with all related post_meta records (data)
I have to execute custom PHP code after new post is saved with all it's meta data.
My question is how to achieve that? Tried with save_post action, but it executes before meta records are saved, so I cannot use it in this case.
So, how can I run my custom function after post with all related data is saved in database?
UPDATED: I tried to achieve with next code in functions.php file:
add_action( 'save_post', 'wpse41912_save_post' );
function wpse41912_save_post() {
// get info about latest added post
$args = array( 'numberposts' = '1', 'post_type' = 'post' );
$recent_posts = wp_get_recent_posts( $args );
$myFunc_latest_id = $recent_posts[0]['ID']; // id of the latest post
$myFunc_post_details = get_post($myFunc_latest_id);
print_r($myFunc_post_details);
// how to execute php code when all post meta is added?
}
Thank you in advance!