У меня есть несколько полей ввода в пользовательском метабоксе. Тем не менее, только 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); ?>