Guest User

Untitled

a guest
Oct 18th, 2019
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.08 KB | None | 0 0
  1. $meta_boxes[] = array(
  2.         'id'         => 'twt-menu-block',
  3.         'title'      => 'TWT Menu Section',
  4.         'type'            => 'block',
  5.         'icon'            => 'editor-table',
  6.         'category'        => 'layout',
  7.         //'context'         => 'side',
  8.         'render_callback' => 'twt_render_menu_block',
  9.         'supports' => array(
  10.             'anchor' => true,
  11.             'customClassName' => true,
  12.         ),
  13.         'fields' => array(
  14.             array(
  15.                 'name' => 'Featured Photo',
  16.                 'id'   => 'featured_photo',
  17.                 'type' => 'single_image',
  18.             ),
  19.             array(
  20.                 'name' => 'Title',
  21.                 'id'   => 'title',
  22.                 'type' => 'textarea',
  23.                 'rows' => 2,
  24.             ),
  25.             array(
  26.                 'name' => 'Text Before Menu Items',
  27.                 'id'   => 'content_before',
  28.                 'type' => 'wysiwyg',
  29.                 'options' => array(
  30.                     'textarea_rows' => 4,
  31.                     'teeny'         => false,
  32.                 ),
  33.             ),
  34.             array(
  35.                 'name' => 'Menu Items',
  36.                 'id'   => 'menu_items',
  37.                 'type' => 'group',
  38.                 'clone' => true,
  39.                 'sort_clone' => true,
  40.                 'collapsible' => true,
  41.                 'default_state' => 'collapsed',
  42.                 'group_title' => '{name}',
  43.                 'fields' => array(
  44.                     array(
  45.                         'name' => 'Dish Name',
  46.                         'id'   => 'name',
  47.                         'type' => 'text',
  48.                         'size' => '100'
  49.                     ),
  50.                     array(
  51.                         'name' => 'Dish Description',
  52.                         'id'   => 'desc',
  53.                         'type' => 'textarea',
  54.                         'rows' => 4
  55.                     ),
  56.                     array(
  57.                         'name' => 'Attributes',
  58.                         'id'   => 'attr',
  59.                         'type' => 'checkbox_list',
  60.                         'options' => array(
  61.                             'gf' => 'Gluten Free',
  62.                             'highlight' => 'Highlight (Blue Background)',
  63.                             'half-width' => 'Half Width',
  64.                             'no-br' => 'No Line Break after Name',
  65.                         ),
  66.                     ),
  67.                 ),
  68.             ),
  69.             array(
  70.                 'name' => 'Text After Menu Items',
  71.                 'id'   => 'content_after',
  72.                 'type' => 'wysiwyg',
  73.                 'options' => array(
  74.                     'textarea_rows' => 4,
  75.                     'teeny'         => false,
  76.                 ),
  77.             ),
  78.             array(
  79.                 'name' => 'Attributes',
  80.                 'id'   => 'attr',
  81.                 'type' => 'checkbox_list',
  82.                 'options' => array(
  83.                     'half-width-section' => 'Half Width Section',
  84.                 ),
  85.             ),
  86.         )
  87.     );
Add Comment
Please, Sign In to add comment