DEV Community

Discussion on: Sending posts from WordPress site to your Telegram channel

Collapse
 
rechtvh profile image
Recht • Edited

Using the above code:

Can you add Category like below and is the hook tag correct?

function telegram_send_message( $new_status, $old_status, $post ) {
if( $new_status == 'publish' && $old_status != 'publish' && $post->post_type == 'post' && $category_id=='Category ID') {

Instead of just sending all new posts, how could we add a specific category, so that any new post with a specified category get sent?