Allow Users to comment if their are from contributor wordpress default group only Is it possible This is my comments code
<?php if ( have_comments() ) : ?>
<h2 class="comments">
<?php comments_number('No Comments', 'One Comment', '% Comments' );?><?php _e(' to ','smallbusiness'); ?> <a href="<?php the_permalink(); ?>"><?php the_title();?></a></h2>
<ol class="commentlist">
<?php wp_list_comments(); ?>
</ol>
<div class="comment-nav">
<div class="floatleft">
<?php previous_comments_link() ?>
</div>
<div class="floatright">
<?php next_comments_link() ?>
</div>
</div>
<?php else : ?>
<?php if ( ! comments_open() && ! is_page() ) : ?>
<p class="watermark"><?php 'Comments are Closed'; ?></p>
<?php endif; ?>
<?php endif; ?>
<?php if ( comments_open() ) : ?>
<div id="comment-form">
<?php comment_form(); ?>
</div>
<?php endif; ?>
I tried Conditional tags but they are not working and the theme is giving a blank white screen after posting comments the theme is not redirecting to the post page