Hello, i have create a metabox group for a CPT, it appears inside the post, but i can not get appear infront. What ever i tried
Thanks alot
Here is the code:
https://pastebin.com/GV5vZQ0A
Here is the output at content.php
<?php
$group_press_values = rwmb_meta( 'press_group' );
if ( ! empty( $group_press_values ) ) {
foreach ( $group_press_values as $group_press_value ) {
$value =$group_press_value['wysiwyg_3'];
echo do_shortcode( wpautop( 'wysiwyg_3' ) );
}
}
?>