Hi,
Just hanging on a new issue now
I have defined a new "custom post type" (called "movies") and a bunch of custom taxonomies for it.
How can I now restrict user access to that kind of posts (let's say called "movies") !??! So that only logged in users will see?
And what about taxonomies !??!
Not from the admin, as I have users posting from the frontend in that custom_post_type, so I'll need to use a php trick somehow based on that new "custom_post_type" and restrict access based on that, maybe smth like
<?php if (is_user_not_logged_in() && $level_req == 1) { ?>
<?php if ($id == ???) { ........
How to?
Thanks!