Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.