I need to know how to make a page template in WordPress that can only be accessed by admins. How could I apply it to the following template?
<?php /*
Template Name: Agency Area
*/
?>
<?php get_header(); ?>
<div id="body">
<div class="agency_area_menu">
<?php wp_nav_menu(); ?>
</div>
</div>
<?php get_footer(); ?>
I'd prefer to do it without plugins.