How can I check to see if the current logged in-in user is an adminadministrator or an editor?
I know how to do each singularlyindividually:
<?php if( current_user_can('editor')) { ?> <!--stuff Stuff here for editors --> <?php } ?> <?php if( current_user_can('administrator')) { ?> <!--stuff Stuff here for adminsadministrators --> <?php } ?> But how do I work those in together? IeI.e., the user is adminan administrator or editor?