Skip to content

Instantly share code, notes, and snippets.

@pedrorvidal
Created April 17, 2020 12:26
Show Gist options
  • Select an option

  • Save pedrorvidal/c6b0be73a6d89c92196199a17bdb8faa to your computer and use it in GitHub Desktop.

Select an option

Save pedrorvidal/c6b0be73a6d89c92196199a17bdb8faa to your computer and use it in GitHub Desktop.
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