Skip to content

Instantly share code, notes, and snippets.

@SiR-DanieL
Last active October 30, 2023 10:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SiR-DanieL/feb58a45b390644cc16354133e309957 to your computer and use it in GitHub Desktop.
Save SiR-DanieL/feb58a45b390644cc16354133e309957 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( 'Your Category Name', $post );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment