我正在使用Redux Framework的付费主题。我试图在页脚选项中添加一个新字段。我可以在选项中添加此字段,但只能在print_r()函数中将其显示在主题选项面板中。
function add_another_section_bl($sections){
$sections[12]['fields'][] = array(
'id' => 'rd_footer_message_1',
'type' => 'textarea',
'title' => __('Text 2 to display in footer under bar', 'thefoxwp'),
'subtitle' => __('write your copyright information or anything you\'d like.', 'thefoxwp'),
'validate' => 'html', //see http://codex.wordpress.org/Function_Reference/wp_kses_post
'default' => 'Copyright 2015 <a href="http://themeforest.net/user/tranmautritam?ref=tranmautritam" target="_blank">Tranmautritam\'s team</a> | All Rights Reserved'
);
return $sections;}
add_filter("redux/options/rd_data/register", 'add_another_section_bl');
在数组数据中,它显示必需的数据,但不在wordpress仪表板的“选项面板”中显示。
请让我摆脱困境。
答案 0 :(得分:0)
如果使用Redux API,则有一种简单得多的方法: https://docs.redux.io/configuration/redux-api.html
您可以在呈现任何节或字段之前对其进行修改,添加,更新。请注意,您可能必须将代码放在钩子中。另外请注意,Redux 4方法名称已从setArgs更改为set_args(驼峰改为非)。
否则,您将拥有所需的一切。