Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Anh Tran

    (@rilwis)

    The word “Array” means you have an array of values for your field. I guess your text field is cloneable, so to display the field value, you should use foreach loop:

    $value = rwmb_meta( 'tb_columnone_text' );
    foreach ( $values as $value )
    {
        echo $value . '<br>';
    }
    Thread Starter captaincainer

    (@captaincainer)

    Thanks for the reply, I figured this one out already. Thanks again for taking the time on this one. ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Can't display meta box on cpt’ is closed to new replies.