PHP WordPress:仅限会员的内容

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP WordPress:仅限会员的内容相关的知识,希望对你有一定的参考价值。

//FUNCTION.PHP
function member_check_shortcode($atts, $content = null) {
  if (is_user_logged_in() && !is_null($content) && !is_feed()) {
    return $content;
  } else {
    return 'Sorry, this part is only available to our members. Click here to become a member!';
}

add_shortcode('member', 'member_check_shortcode');

//add the following to your posts to create a section or text (or any other content) that will be displayed only to registered users:

[member]
This text will be displayed only to registered users.
[/member]

以上是关于PHP WordPress:仅限会员的内容的主要内容,如果未能解决你的问题,请参考以下文章

基于日期和日期范围的仅限会员下载

php WordPress前端上传器和仅限当前用户的媒体过滤器

PHP 在WordPress 3.1+上自动通知您的会员新帖子

如何在 wordpress 主页上加载 Bootstrap **仅限**

php Cron的工作是将wordpress用户添加到特定的Membership 2 Pro会员/订阅中

WordPress开发之创建WordPress会员网站