comments_template not working correcly in custom template files

This if statement is really wrong :

if (get_current_user_id()==1 or get_current_user_id()==2 

should be :

$user_id = get_current_user_id();
if ($user_id==1 || $user_id==2 )

Leave a Comment