How to prevent a custom post type from being restricted.
-
Trying to prevent landing pages from being restricted This what I was able to with.
add_filter( 'restricted_site_access_is_restricted', 'show_my_landing_page' ); function show_my_landing_page( $is_restricted, $wp ) { if ($wp->post_type == "landing_page") $is_restricted = false; return $is_restricted; }
Any help is greatly appreciated.
- The topic ‘How to prevent a custom post type from being restricted.’ is closed to new replies.