Hi guys,
I was wondering if it's possible to strictly allow admins only to comment on pages (not posts)
Thanks
Victoria
Hi guys,
I was wondering if it's possible to strictly allow admins only to comment on pages (not posts)
Thanks
Victoria
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; ?>
thank you :)
This topic has been closed to new replies.