Hi, when a contributor post something to my wordpress site,I want it to be published automatically,instead of pending review status.I want to know is there any plugin or any simple customisation.
Open the function.php file from the activated theme directory and add this code there: function add_role_caps() { global $wp_roles; $role = get_role('contributor'); $role->add_cap('publish_posts'); }; add_action ('admin_head','add_role_caps'); PHP: After it the contributors can publish their posts.
I haven't tried itbefore, but you might try going to Settings/Discussion in your dashboard and under Before a comment appears uncheck the two boxes.