Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. if(function_exists("register_field_group"))
  2. {
  3.     register_field_group(array (
  4.         'id' => 'acf_prodotti-in-blog',
  5.         'title' => 'Prodotti in blog',
  6.         'fields' => array (
  7.             array (
  8.                 'key' => 'field_5a8ef9c0fa637',
  9.                 'label' => 'descrizione',
  10.                 'name' => 'descrizione',
  11.                 'type' => 'textarea',
  12.                 'default_value' => '',
  13.                 'placeholder' => 'Inserisci la descrizione',
  14.                 'maxlength' => '',
  15.                 'rows' => '',
  16.                 'formatting' => 'br',
  17.             ),
  18.             array (
  19.                 'key' => 'field_5a8ef9d6fa638',
  20.                 'label' => 'proprietà',
  21.                 'name' => 'proprietà',
  22.                 'type' => 'textarea',
  23.                 'default_value' => '',
  24.                 'placeholder' => '',
  25.                 'maxlength' => '',
  26.                 'rows' => '',
  27.                 'formatting' => 'br',
  28.             ),
  29.             array (
  30.                 'key' => 'field_5a8efc7d644ad',
  31.                 'label' => 'url italiano',
  32.                 'name' => 'url_italiano',
  33.                 'type' => 'text',
  34.                 'default_value' => '',
  35.                 'placeholder' => '',
  36.                 'prepend' => '',
  37.                 'append' => '',
  38.                 'formatting' => 'html',
  39.                 'maxlength' => '',
  40.             ),
  41.             array (
  42.                 'key' => 'field_5a8efca1644ae',
  43.                 'label' => 'url inglese',
  44.                 'name' => 'url_inglese',
  45.                 'type' => 'text',
  46.                 'default_value' => '',
  47.                 'placeholder' => '',
  48.                 'prepend' => '',
  49.                 'append' => '',
  50.                 'formatting' => 'html',
  51.                 'maxlength' => '',
  52.             ),
  53.             array (
  54.                 'key' => 'field_5a8efcb9644af',
  55.                 'label' => 'immagine prodotto',
  56.                 'name' => 'immagine_prodotto',
  57.                 'type' => 'image',
  58.                 'save_format' => 'object',
  59.                 'preview_size' => 'thumbnail',
  60.                 'library' => 'all',
  61.             ),
  62.         ),
  63.         'location' => array (
  64.             array (
  65.                 array (
  66.                     'param' => 'post_type',
  67.                     'operator' => '==',
  68.                     'value' => 'prodotto_in_blog',
  69.                     'order_no' => 0,
  70.                     'group_no' => 0,
  71.                 ),
  72.             ),
  73.         ),
  74.         'options' => array (
  75.             'position' => 'normal',
  76.             'layout' => 'no_box',
  77.             'hide_on_screen' => array (
  78.             ),
  79.         ),
  80.         'menu_order' => 0,
  81.     ));
  82. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement