as follow up, this is what I am using to hide posts from authors that are not theirs. I am looking for the wp calendar equivalent.
thanks
==================================
function posts_for_current_author($query) {
global $userdata;
if($userdata->user_level < 10){
if($query->is_admin) {
global $user_ID;
$query->set(‘author’, $user_ID);
}
return $query;
}
}
add_action( ‘admin_head’, ‘include_mk_arrays’ );
This hack seems to have done the trick. Shame we are hacking something as far along as 3.0
http://wordpress.org/support/topic/upgraded-to-30-posts-not-showing?replies=14
I seem to have the same problem with a theme that has no home.php or any other special template files.
twenty ten works but not my new theme that only has about 5 files.