Last active
October 30, 2023 10:09
-
-
Save SirDarcanos/feb58a45b390644cc16354133e309957 to your computer and use it in GitHub Desktop.
WordPress Discord Post: Send only specific categories
This file contains hidden or 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 | |
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