lolirado

Tab issue

Jul 1st, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.65 KB | None | 0 0
  1. add_filter( 'rwmb_meta_boxes', 'your_prefix_register_meta_boxes' );
  2. function your_prefix_register_meta_boxes( $meta_boxes ) {
  3.     $meta_boxes[] = array (
  4.         'title' => 'Listing Info',
  5.         'id' => 'listing-info',
  6.         'post_types' => array(
  7.             0 => 'listing',
  8.         ),
  9.         'context' => 'normal',
  10.         'priority' => 'high',
  11.         'fields' => array(
  12.             array (
  13.                 'id' => 'text_2',
  14.                 'type' => 'text',
  15.                 'name' => 'Text Field',
  16.                 'tab' => 'label-1',
  17.             ),
  18.         ),
  19.         'tab_style' => 'default',
  20.         'tab_wrapper' => true,
  21.         'tabs' => array(
  22.             'label-1' => array(
  23.                 'label' => 'Tab',
  24.                 'icon' => 'dashicons-admin-generic',
  25.             ),
  26.         ),
  27.     );
  28.     return $meta_boxes;
  29. }
Add Comment
Please, Sign In to add comment