control posts comments on or off

Support MB Frontend Submission control posts comments on or off

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #9827
    brkardbrkard
    Participant

    Hi.
    I need to enable comments off or on with a radio or select button for front end posting.

    Do you know any way or snippet for this ?

    Thanks.

    #9844
    Anh TranAnh Tran
    Keymaster

    Hi,

    Please use this snippet:

    add_filter( 'rwmb_frontend_insert_post_data', function( $data, $config ) {
        if ( 'meta-box-id' == $config['id'] ) {
            $data['comment_status'] = 'closed';
        }
        return $data;
    }, 10, 2 );
Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘control posts comments on or off’ is closed to new replies.