Skip to content

Instantly share code, notes, and snippets.

@dattard21
Created October 10, 2016 16:32
Show Gist options
  • Save dattard21/f7b86bd8ad4a72e81bf7fa8facbbdae4 to your computer and use it in GitHub Desktop.
Save dattard21/f7b86bd8ad4a72e81bf7fa8facbbdae4 to your computer and use it in GitHub Desktop.
function publish_post_to_social_media($post_ID) {
global $post;
// Send a tweet
...
//Push URL to Facebook page
...
//Send to Google+ page
...
}
add_action('publish_post', 'publish_post_to_social_media');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment