Skip to content

Instantly share code, notes, and snippets.

@Niloys7
Created August 14, 2018 18:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Niloys7/eddd922c9e2a132ab54b5bae72d1b508 to your computer and use it in GitHub Desktop.
Save Niloys7/eddd922c9e2a132ab54b5bae72d1b508 to your computer and use it in GitHub Desktop.
<?php
/*
http://manual.unyson.io/en/latest/options/introduction.html#content
*/
$options = array(
'tab_1' => array(
'title' => esc_html__('Logo Options', 'academic'),
'type' => 'tab',
'options' => array(
'heading' => array(
'type' => 'text',
'label' => __('Title', 'academic'),
'desc' => __('Section Title', 'academic'),
'options' => array(),
),
),
),
'tab_2' => array(
'title' => esc_html__('Favicon', 'academic'),
'type' => 'tab',
'options' => array(
'heading' => array(
'type' => 'text',
'label' => __('Title', 'academic'),
'desc' => __('Section Title', 'academic'),
'options' => array(),
),
),
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment