User login display content [Shortcode]
Paste code to function.php in Child theme
//AN NOI DUNG CHI DAN CHO THANH VIEN
add_shortcode('noidungan', 'noi_dung_an');
function noi_dung_an($atts, $content = null) {
if (is_user_logged_in() && !is_null($content) && !is_feed()) {
return $content;
} else {
$atts = '<div class="noidungan">Xin lỗi! Nội dung này chỉ dành riêng cho thành viên.</div>';
return $atts;
}
}
// KET THUC

Last updated