如何用短代码实现内容WordPress会员登录可见?

2022年11月28日 发表评论
免费、便宜/高性价比 服务器汇总(已更新):点击这里了解

如何用短代码实现内容WordPress会员登录可见?

如何用短代码实现内容WordPress会员登录可见?给自己的WordPress网站增加一个会员可读范围,会员需要登录后才能查看相关内容。

1、将下面的代码添加到主题functions.php模板文件中:

  1. function member_check_shortcode($atts, $content = null) {     if (is_user_logged_in() && !is_null($content) && !is_feed()) {          return do_shortcode($content);     }     return '<p>请注册登录后查看内容</p>';}add_shortcode('member', 'member_check_shortcode');  

2、然后在编辑文章是可以通过添加短代码,只有登录用户才能看到的内容

  1. [member]登录后显示的内容[/member]  

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: