This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_action( 'transition_post_status' , 'purge_future_post', 10, 3); | |
function purge_future_post( $new_status, $old_status, $post ) { | |
if($new_status == 'publish') { | |
purge_facebook_cache($post); | |
} | |
} | |
function purge_facebook_cache($post_id) { |