1.打开当前WordPress主题模板目录的functions.php文件,在<?php下面的?>前面添加如下代码:
add_shortcode('hide','loginvisible');
function loginvisible($atts,$content=null){
if(is_user_logged_in() && !is_null($content) && !is_feed())
return $content;
return '';
}
2.编辑文章时,使用hide短码包围要隐藏的内容,如:
[hide]
登陆才可以看到的内容
[/hide]
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
请登录后发表评论
注册
社交帐号登录