• i think many of you already used or ‘ve heard of ‘quick post widget
    which dont allows subscribers to post. only admin,editor,contributer can use it.
    im working on a public blog so is there anyway to make it allow subscribers/registered users to post?
    ————
    im using latest wordpress version,latest bddyprss and bddprss default theme.
    ————
    any kind help would be accepted gladly:)

Viewing 1 replies (of 1 total)
  • @elektrowater
    The Quick Post Widget follows the WordPress roles and capabilities so subscribers are not allowed to post.
    If however you do want subscribers to post there is a simple hack to accomplish this. You could for instance on line 413 of the current version 1.7.1 of the quick-post-widget.php change:

    if ( current_user_can(‘publish_posts’) )

    to

    if ( $current_user->user_level >= 0 )

    To allow subsribers to create new categories change line 415 to the same.
    Hope this helps.
    Perry

Viewing 1 replies (of 1 total)
  • The topic ‘'quick post widget' – enabling subscribers to post’ is closed to new replies.