Skip to content

Instantly share code, notes, and snippets.

@dparker1005
Created October 23, 2023 13:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dparker1005/04d617fc2bc079dbbee38617451f58b9 to your computer and use it in GitHub Desktop.
Save dparker1005/04d617fc2bc079dbbee38617451f58b9 to your computer and use it in GitHub Desktop.
Redirect logged out users from a specific post to the site's login page.
<?php
// Copy below this line.
/**
* Redirect logged out users from a specific post to the site's login page.
*
* You can add this recipe to your site by creating a custom plugin
* or using the Code Snippets plugin available for free in the WordPress repository.
* Read this companion article for step-by-step directions on either method.
* https://www.paidmembershipspro.com/create-a-plugin-for-pmpro-customizations/
*/
function my_redirect_logged_out_users_from_post() {
if ( is_single( 20206 ) && ! is_user_logged_in() ) {
wp_redirect( wp_login_url() );
}
}
add_action( 'template_redirect', 'my_redirect_logged_out_users_from_post' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment