WordPress用户登录才能显示隐藏内容

1
2
3
4
5
6
7
8
/***
    *WordPress 设置必须用户登录才能显示的隐藏内容
*/
function Bing_members_only_shortcode( $atts, $content = null ){
    if( is_user_logged_in() && !empty( $content ) && !is_feed() ) return $content;
    return __( '此内容必须登录才能查看', 'Bing' );
}
add_shortcode( 'members_only', 'Bing_members_only_shortcode' );

使用以下短代码隐藏内容:

1
2
3
[members_only]
此内容只能在登录后查看
[/members_only]

mark:如何在后台编辑框的文本编辑状态增加自定义的短代码按钮呢?

原文链接:https://xiaohost.com/1466.html,转载请注明出处。
0

评论0

请先