Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save femiyb/d3f831f9c06261e8f22051f45cff54ad to your computer and use it in GitHub Desktop.
Save femiyb/d3f831f9c06261e8f22051f45cff54ad to your computer and use it in GitHub Desktop.
Redirect non-members away from CPTs with specific term
<?php
function my_pmpro_term_template_redirect() {
global $post;
//change category and level ID here
if( has_term('PGreen-blog', 'content_type', $post) && 351 == $post->ID && !pmpro_hasMembershipLevel())
{
wp_redirect(pmpro_url('levels'));
exit;
}
}
add_action('template_redirect', 'my_pmpro_term_template_redirect');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment