bbp_pending_post_status

bbp_pending_post_status

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_pending_post_status') is found 1 times:

  • /bbpress.php line 255
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    $this->spam_status_id    = apply_filters( 'bbp_spam_post_status',    'spam'    );
    $this->closed_status_id  = apply_filters( 'bbp_closed_post_status''closed'  );
    $this->orphan_status_id  = apply_filters( 'bbp_orphan_post_status''orphan'  );
    $this->public_status_id  = apply_filters( 'bbp_public_post_status''publish' );
    $this->pending_status_id = apply_filters( 'bbp_pending_post_status', 'pending' );
    $this->private_status_id = apply_filters( 'bbp_private_post_status', 'private' );
    $this->hidden_status_id  = apply_filters( 'bbp_hidden_post_status''hidden'  );
    $this->trash_status_id   = apply_filters( 'bbp_trash_post_status',   'trash'   );
     
    // Other identifiers
    $this->user_id           = apply_filters( 'bbp_user_id',        'bbp_user'        );