Reply To: WYSWIYG field and Shortcodes
Support › General › ✅WYSWIYG field and Shortcodes › Reply To: WYSWIYG field and Shortcodes
March 29, 2019 at 5:14 PM
#13975
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 );