• Hi guys,

    I was wondering if it’s possible to strictly allow admins only to comment on pages (not posts)

    Thanks

    Victoria

Viewing 2 replies - 1 through 2 (of 2 total)
  • One method I can think of is to modify the comments template (comments.php):

    <?php
    global $user_level;
    if( is_page() && $user_level < 10 ) :
    ?>

    <p>Only admins can comment on this article.</p>

    <?php else : ?>

    ~comment form goes here~

    <?php endif; ?>

    Thread Starter vanesta

    (@vanesta)

    thank you 🙂

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Comment Form for Admin Only – Help’ is closed to new replies.