Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi, jangsan.

    There are probably better plugins out there if you want to protect all of your Post/Page content, but something like this might work (replace the call to the_content() with the following):

    $content = get_the_content();
    $content = apply_filters( 'the_content', get_the_content() );
    $content = str_replace( ']]>', ']]>', $content );
    echo do_shortcode( '[content_protector password="mypassword"]' . $content . '[/content_protector]' );
    Thread Starter jangsan

    (@jangsan)

    Hello,K. Tough

    Thanks for you help. How can I use it by CAPTCHA???

    Best Regards

    Just set the password to CAPTCHA.

    Thread Starter jangsan

    (@jangsan)

    It works.Thanks a lot. Because I want to protect the Video Posts.

    Best Regards

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Is that any way to Protect all Contents in 1 time?’ is closed to new replies.