Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter bridgetwes

    (@bridgetwes)

    I figured out how to allow Editors to manage Polls. Add the following to your functions.php file.

    function add_poll_capability_to_editor() {
        $role_object = get_role( 'editor' );
        $role_object->add_cap('manage_polls');
    }
    add_action( 'admin_init', 'add_poll_capability_to_editor');

    Thanks a lot, this is the droid code I was searching for ! \o/

    Hi Bridgetwes and Stefan.Kruger,

    You can load the “capability manager” plugin. There is a check box for “manage polls”. Set this and other check boxes for managing user capabilities and roles.

    Hope this helps…

    Thank you @bridgetwes, that’s what I was looking for.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Plugin: WP-Polls] Possible for Editor to manage polls?’ is closed to new replies.