Я пытаюсь использовать Codestar Custom Metabox в Custom Post.Но это не дает никакой ценности.Я стараюсь, как могу.Но мне не удалось.
$meta = get_post_meta( get_the_ID(), '_my_post_options', true );
<h4>'.$meta['opt-text'].'</h4>
Код метабокса:
if( class_exists( 'CSF' ) ) {
$prefix = '_my_post_options';
CSF::createMetabox( $prefix, array(
'title' => 'My Post Options',
'post_type' => 'pstory',
) );
CSF::createSection( $prefix, array(
'title' => 'Tab Title 1',
'fields' => array(
array(
'id' => 'opt-text',
'type' => 'text',
'title' => 'Simple Text',
),
)
) );
CSF::createSection( $prefix, array(
'title' => 'Tab Title 2',
'fields' => array(
array(
'id' => 'opt-textarea',
'type' => 'textarea',
'title' => 'Simple Textarea',
),
)
) );
}