hi there,
i have a simple question, just wanna know if it's possible or not!
i'm using this bit of code underneath every post to give a USER the ability to edit a blogpost directly by clicking on the edit button.
<?php if(is_user_logged_in()) { ?> / <?php edit_post_link('EDIT', '', ''); ?><?php } ?>
however, is there any other way for WPMU to kind of query if the USER is even permitted to EDIT this particular post. for instance, i have a certain USER which can only EDIT and MANAGE a certain subblog in my MU-environment.
i just want to make the EDIT button visible if this USER is on his blog.
if i use this code mentioned above, any user of any subblog sees the EDIT button on the MAINBLOG.
can i change that?