Plugin Membership

Mình muốn tìm 1 plugin hỗ trợ dạng membership, thành viên đăng ký mới nhìn thấy content trong bài viết, có plugin nào như vậy không mọi người ?

I. CHỈ HIỆN THỊ NỘI DUNG CHO THÀNH VIÊN ĐĂNG NHẬP:
1, Chèn vào: functions.php

add_shortcode( ‘UAS_loggedin’, ‘uasc_loggedin_sc’ );
function uasc_loggedin_sc( $atts, $content = null ) {
extract( shortcode_atts( array(
‘ex’ => ‘’,
), $atts ) );
$ex = str_replace(’ ', ‘’, $ex);
$excludeds = explode(",", $ex);
$user_id = get_current_user_id();
//check if user is logged in
if ( is_user_logged_in() ) {
//loop through excluded user ids
foreach ($excludeds as $excluded) {
//check if user is excluded
if ($user_id == $excluded) {
//show nothing
return ‘’;
}
}
//show content to logged in users
return do_shortcode($content);
//hide content to guests
} else {
return ‘’;
}
}

2, Chèn vào trong bài viết hay trang:

[UAS_loggedin]
Nội dung này chỉ có thể được nhìn thấy bởi người dùng đã đăng nhập.
[/UAS_loggedin]

pro ơi, code này là chặn xem toàn bộ bài viết trên web luôn ạ pro?