Có cách đó bạn. Làm theo HD nhé:
Edit file functions.php trong cái giao diện đang dùng (vào phần theme>editor rồi tìm)
Add mã này vào:
add_shortcode( 'member', 'member_check_shortcode' );
function member_check_shortcode( $atts, $content = null ) {
if ( is_user_logged_in() && !is_null( $content ) && !is_feed() )
return $content;
return '';
}
Sau đó, khi viết bài, chỗ nào cần hide (ví dụ link download chẳng hạn) viết thế này
[member]Nội dung cần giấu viết ở đây.[/member]