我在特定页面上有内容,只有“ A组”的成员才能看到。
但是不幸的是,所有组的所有成员都可以看到他们的评论。
我正试图为此创建一个过滤器,但我无法使其正常工作。
我只想按woocommerce成员的身份过滤评论,有什么建议对我有帮助吗?
add_filter( ‘comments_array’ , ‘members_filter’ , 10, 2 );
function members_filter( $comments, $post_id ){
$current_user = wp_get_current_user();
foreach( $comments as $key => $comment ){
$comment_author = new WP_User( $comment->user_id );
$userid=get_current_user_id();
if (wc_memberships_is_user_active_member( $userid, 'test_1' )) {
unset( $comments[$key] );
}
}
return $comments;
}
```