实际上是什么
$post
变量如果是
from WordPress core
,使用此代码:
$categories = get_the_category( $post->ID );
foreach( $categories as $category ) {
if( $category->cat_ID == 'Your category ID' ){
// Send notification please
}
// If you need category slug check
if( $category->cat_name == 'Your category slug' ){
// Send notification please
}
}
和
get_cat_ID()
返回整数,而不是字符串
Result
.