Hi:
I think something got lost in translation.
I'm looking to wrap a SUBSET of fields with a custom div. So, something like this.
// CUSTOM HTML
array(
'type' => 'custom_html',
'std' => __( '<div class="myclass">', 'my-metaboxes' ),
'id' => 'myid',
),
/* Some fields here... */
// CUSTOM HTML
array(
'type' => 'custom_html',
'std' => __( '</div>', 'my-metaboxes' ),
'id' => 'myid2',
),
You'll notice that the fields specifed by 'some fields here' are being wrapped in a custom div.
That's the effect I've trying to achieve.
I don't think the suggested use of the rwmb_subfieldID_wrapper_html filter will allow for this?
Thanks!