未读的get_field和sub_field始终返回null或false

时间:2018-07-25 19:26:09

标签: php arrays wordpress plugins

大家好,我在这里有些地方很漂亮

我正在创建此结构

strptime

轻松创建带有两个字段链接和链接名称的中继器 问题是,当我尝试从该字段获取数据时,它什么也没显示

我跑步时

/*Tips*/
                    array(
                        'label' => 'Seccion Tips',
                        'name' => 'sec_mgz_tips',
                        'display' => '',
                        'min' => '',
                        'max' => '',
                        'sub_fields' => array(
                            array(
                                'key' => 'field_5e78e',
                                'label' => 'Tips',
                                'name' => 'sec_bt_tips',
                                'type' => 'repeater',
                                'column_width' => '',
                                   'sub_fields' => array(
                                     array(
                                        'key' => 'field_527178f',
                                        'label' => 'Tip Link',
                                        'name' => 'sec_bt_tip',
                                        'type' => 'text',
                                        'column_width' => '',
                                        'save_format' => 'id',
                                    ),
                                    array(
                                        'key' => 'field_5178f',
                                        'label' => 'Titulo',
                                        'name' => 'sec_bt_tip_title',
                                        'type' => 'text',
                                        'column_width' => '',
                                        'save_format' => 'id',
                                    ),
                                ),
                                'row_min' => '',
                                'row_limit' => 3,
                                'layout' => 'row',
                                'button_label' => 'Agregar Tip',
                            ),
                        ),
                    ),
                   /*Tips end*/

打印为空

我跑步时

$subfield = get_field('sec_mgz_tips');
var_dump($subfield);

打印FALSE

我跑步时

$subfield = get_sub_field('sec_mgz_tips');
var_dump($subfield);

打印

$sections = get_field('bt_secciones');
var_dump($sections);

您可以在数组中看到该字段确实存在,所以我不知道为什么不打印其值

这里会发生什么?

0 个答案:

没有答案