Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Other WordPress hide categories from logged out users Re: WordPress hide categories from logged out users

#134362
TheDoc
Member

You shouldn’t really need a plugin for this. You just need to use this:

Resource: http://codex.wordpress.org/Function_Reference/is_user_logged_in

Inside your `is_user_logged_in` conditional, you can run the loop for your dealer blogs. Just have to make sure that you also use it on the actual single pages so that logged out people can’t see the single posts, either.

So you’d do something like:

echo ‘Sorry, you need to be logged in to view this post. Log in.‘;
} ?>