Skip to content

Instantly share code, notes, and snippets.

@ko31
Created October 16, 2016 21:16
Show Gist options
  • Save ko31/459825a87fd163ef4a6293cf8908f30a to your computer and use it in GitHub Desktop.
Save ko31/459825a87fd163ef4a6293cf8908f30a to your computer and use it in GitHub Desktop.
【WordPress】新規投稿時にLINE Notifyにメッセージ通知する
function my_publish_post( $ID, $post ) {
$message = "新規投稿が公開されました。\n";
$message .= "タイトル:" . $post->post_title . "\n";
$message .= "URL:" . get_permalink( $ID );
my_send_linenotify( $message );
}
add_action( 'publish_post', 'my_publish_post', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment