Support General WYSWIYG field and Shortcodes Reply To: WYSWIYG field and Shortcodes

#13975
Anh TranAnh Tran
Keymaster

Hi yumikom, please try the rwmb_the_value filter:

add_filter( 'rwmb_get_value', function( $value, $field, $args, $object_id ) {
    if ( 'wysiwyg' === $field['type'] ) {
        $value = do_shortcode( $value );
    }
    return $value;
}, 10, 4 );