Example #1
0
function extra_customizer_register_header_and_navigation_header_format_settings()
{
    return array('header_style' => array('label' => __('Left/Right or Centered?', 'extra'), 'type' => 'radio', 'sanitize_callback' => 'et_sanitize_header_style', 'default' => 'left-right', 'choices' => et_extra_header_style_choices(), 'value_bind' => array('style' => 'class_toggle', 'selector' => 'header', 'class' => '_value_bind_to_value')), 'hide_nav_until_scroll' => array('label' => __('Hide Navigation Until Scroll', 'extra'), 'type' => 'checkbox', 'value_bind' => array('style' => 'class_toggle', 'selector' => 'body', 'class' => 'et_hide_nav')));
}
Example #2
0
/**
 * Sanitize header style
 * @param string
 * @return string|bool
 */
function et_sanitize_header_style($choosen)
{
    return et_sanitize_key_based_option($choosen, et_extra_header_style_choices());
}