我在highcharts的短代码中创建了一个文本字段,我们可以在其中为图表选择页脚标签。这是字段:
array(
\'label\' => esc_html( \'Footer label\' ),
\'description\' => esc_html( \'Choose the footer label\' ),
\'attr\' => \'footer_caption\',
\'type\' => \'text\',
),
在此之前,一切都很好,字段被创建,它保存了我在那里输入的值,也保存了数据库中的值。呈现的html示例以及数据库中显示的内容:
<input type="text" class="regular-text" name="footer_caption" id="shortcode-ui-footer_caption-c42" value="test caption" placeholder="">
以及:
[the_chart chart="23" footer_caption="test caption"/]
问题是我无法获得字段的值。在此图表中,eg:
test caption
我不太习惯PHP,但我尝试了多种不同的方法来检索footer_caption
但是没有运气。我必须在另一个函数中传递该值,那么有人能帮我一下,告诉我如何检索footer_caption
?