我在自定义metabox中有多个输入字段。但是,页面上仅显示2-3个数组项,而其他则没有。例如,显示“ text-ruby”,但不显示“ textname”。为什么?它们之间有什么区别?
array(
'name' => 'Additional Post Title on thumbnail',
'desc' => 'The text will shown on post thumbnail via our elementor post widget',
'id' => $prefix . 'text-ruby',
'type' => 'text',
'std' => 'You must read this! ;)'
),
array(
'name' => 'Name',
'desc' => 'You should write name here',
'id' => $prefix . 'textname',
'type' => 'text',
'std' => 'John Smith.'
),
<?php echo get_post_meta(get_the_ID(), 'ozellikler_textname', true); ?>
<?php echo get_post_meta(get_the_ID(), 'ozellikler_text-ruby', true); ?>