How are the files included in the themes functions.php file loaded.<br><br>Like, some of the files are required only for the backend (admin), so are those files called for when generating the page for regular visitors?<br>
<br><br>For example, I have this code<br><br><div style="margin-left: 40px;">//Required to show the page navigation.<br>require_once ( INCLUDES. &#39;/wp-pagenavi.php&#39; );      // Add&#39;s wp page nav support, script by Lester Chann<br>
   <br>// Required only for the backend.<br>require_once (ADMIN. &#39;/admin-header.php&#39;);         //Header of options page<br>require_once (ADMIN. &#39;/admin-core.php&#39;);           // Work horse for SWIFT admin options.<br>
</div><br><br>Should i use some conditional tags while loading the files?<br><br><br><br>Satish Gandham<br>