WordPress settings only registered users can browse specific content

Source: Internet
Author: User

We add a custom field: User_only, if this value is not zero, this log or page is only for registered users to browse, and then through the the_content to control the content display, so simple and flexible settings specific to which article or page is only registered users browsing. The detailed code is as follows:

The code is as follows Copy Code
<?php
Add_filter (' the_content ', ' post_user_only ');
function Post_user_only ($text) {
Global $post;

$user _only = Get_post_meta ($post->id, ' user_only ', true);
if ($user _only) {
Global $user _id;
if (! $user _id) {
$redirect = Get_permalink ($post->id);
$text = ' This content is limited to member browsing, please <a href= '. Wp_login_url ($redirect). ' > Login </a>! ';
}
}
return $text;
}
?>

Copy the top tape into a file and upload it to the plugin directory, activate it

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.