Skip to content

Instantly share code, notes, and snippets.

@SirDarcanos
Last active October 30, 2023 10:09
Show Gist options
  • Save SirDarcanos/91182481d9fcdd33784bbc4a7f0cb819 to your computer and use it in GitHub Desktop.
Save SirDarcanos/91182481d9fcdd33784bbc4a7f0cb819 to your computer and use it in GitHub Desktop.
WordPress Discord Post: Send only specific categories
<?php
add_filter( 'wp_discord_post_is_new_post', 'wp_discord_post_limit_by_category' );
function wp_discord_post_limit_by_category( $post ) {
return has_category( array( 'Category 1', 'Category 2' ), $post );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment