Redirect Users who aren’t logged in, aren’t post authors and aren’t admin. Frontend

get_user_id() is not a function so you’ll get an error for that. Additionally, you can get the author id by calling the $post global and accessing the property post_author add_action( ‘template_redirect’, ‘redirect_non_permitted_users’ ); function redirect_non_permitted_users () { if (is_admin()) return; $userID = get_current_user_id(); global $post; $authorID = absint($post->post_author); if( $userID !== $authorID && ! is_user_logged_in() … Read more

Question about proper use of wp_redirect?

It seems this would just be a function of your theme. If you don’t provide links to single posts, categories, etc., then as far as your visitors are concerned, those things effectively don’t exist. If you really want to prevent access to things, you can’t redirect in a template as headers have already been sent. … Read more