Ask Private Post ở Blog WP!!!

nva1991

Newbie
Joined
Mar 12, 2012
Messages
3
Reactions
327
MR
0.000
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]
 

Announcements

Forum statistics

Threads
434,197
Messages
7,320,943
Members
185,473
Latest member
kietlon090
Back
Top Bottom