|
from lowest to highest",'acf'); ?>
|
'number',
'name' => 'menu_order',
'value' => $post->menu_order,
));
?>
|
|
|
'radio',
'name' => 'options[position]',
'value' => $options['position'],
'choices' => array(
'acf_after_title' => __("High (after title)",'acf'),
'normal' => __("Normal (after content)",'acf'),
'side' => __("Side",'acf'),
),
'default_value' => 'normal'
));
?>
|
|
|
'radio',
'name' => 'options[layout]',
'value' => $options['layout'],
'choices' => array(
'no_box' => __("No Metabox",'acf'),
'default' => __("Standard Metabox",'acf'),
)
));
?>
|
|
Select items to hide them from the edit screen",'acf'); ?>
|
'checkbox',
'name' => 'options[hide_on_screen]',
'value' => $options['hide_on_screen'],
'choices' => array(
'the_content' => __("Content Editor",'acf'),
'excerpt' => __("Excerpt"),
'custom_fields' => __("Custom Fields"),
'discussion' => __("Discussion"),
'comments' => __("Comments"),
'revisions' => __("Revisions"),
'slug' => __("Slug"),
'author' => __("Author"),
'format' => __("Format"),
'featured_image' => __("Featured Image"),
'categories' => __("Categories"),
'tags' => __("Tags"),
'send-trackbacks' => __("Send Trackbacks"),
)
));
?>
|