Skip to content

Instantly share code, notes, and snippets.

@hivepress
Created January 26, 2026 21:29
Show Gist options
  • Select an option

  • Save hivepress/4a91ba345db777f518e87fdafa64fd6f to your computer and use it in GitHub Desktop.

Select an option

Save hivepress/4a91ba345db777f518e87fdafa64fd6f to your computer and use it in GitHub Desktop.
Hide the request pages from non-registered users (redirect to login form) #hivepress #requests
<?php
add_action(
'template_redirect',
function() {
if ( ! is_user_logged_in() && in_array( hivepress()->router->get_current_route_name(), [ 'request_view_page', 'requests_view_page' ] ) ) {
wp_safe_redirect( hivepress()->router->get_return_url( 'user_login_page' ) );
exit;
}
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment