Are you looking for a way to display different things if you are an admin? While there’s probably a plugin for this, we have created a quick code snippet that you can use to display different things if you are an admin in WordPress.
Instructions:
All you have to do is add this code to your theme’s index.php file:
<?php global $current_user; get_currentuserinfo(); if ($current_user->user_level == 10 ) { ?> Admin Stuff (In my case I left this blank) <?php } else { ?> Stuff Seen By Visitors <?php } ?>
Note: If this is your first time adding code snippets in WordPress, then please refer to our guide on how to properly add code snippets in WordPress, so you don’t accidentally break your site.
If you liked this code snippet, please consider checking out our other articles on the site like: 27 best WordPress themes for travel blogs and how to start a blog.
Comments Leave a Reply