Do you mean the bloglist? Yes, if you want something to only show to people who are logged in, then open _main.php and do this:
<?php
if( is_logged_in() ){
//Whatever you only want to show to logged in members goes here, for example
require( dirname(__FILE__).'/_bloglist.php');
//placing that require in the if statement makes it only visible to logged in members
}
Do you mean the bloglist? Yes, if you want something to only show to people who are logged in, then open _main.php and do this: