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 | |
# based on https://gist.github.com/alexstone/9319715 | |
function slack_post($post_id) { | |
if( ( $_POST['post_status'] == 'publish' ) && ( $_POST['original_post_status'] != 'publish' ) ) { | |
$room = "general"; // What Slack channel to send to | |
$post = get_post($post_id); | |
$author = get_userdata($post->post_author); | |
$message = "New post '" . get_the_title($post_id) . "' by {$author->user_firstname} - " . get_permalink($post->ID); |
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 | |
/* | |
βββββββββββββββββββββββββββββ | |
βββββββββββββββββββββββββββββ | |
βββββββββββββββββββββββββββββ | |
βββββββββββββββββββββββββββββ | |
βββββββββββββββββββββββββββββ | |
βββββββββββββββββββββββββββββ | |
βββββββββββββββββββββββββββββ |
NewerOlder