Created
April 17, 2020 12:26
-
-
Save pedrorvidal/c6b0be73a6d89c92196199a17bdb8faa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| add_filter( 'wp_head', function(){ | |
| if (is_page(XX) && !is_user_logged_in()) { | |
| add_filter('the_content', function(){ | |
| return __('Sorry! Onlu logged-in user are allowed to see the content'); | |
| }, 99); | |
| } | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment