Answers for "wordpress check if admin"

PHP
0

wordpress if admin

<?php if(current_user_can('editor')) { ?> 
    <!-- Stuff here for editors -->
<?php } ?>

<?php if(current_user_can('administrator')) { ?>
    <!-- Stuff here for administrators -->
<?php } ?>
Posted by: Guest on August-11-2021

Code answers related to "wordpress check if admin"

Browse Popular Code Answers by Language