Skip to content

Instantly share code, notes, and snippets.

@agutoli
Created June 9, 2017 03:34
Show Gist options
  • Save agutoli/2ab58e1e7b30d85af00f3ee2cb12419c to your computer and use it in GitHub Desktop.
Save agutoli/2ab58e1e7b30d85af00f3ee2cb12419c to your computer and use it in GitHub Desktop.
<?php
require('ci.base.php');
const MY_CATEGORY_FIELDS = 'my_category_fields_option';
$tag_extra_fields = array(
141 => array(
'category_custom_fields' => '',
'category_custom_fields_type' => ''
),
746 => array(
'your_image_url' => '',
'category_image' => '',
'category_icon_code' => '',
'category_icon_color' => '',
'category_custom_fields' => array(
array('Year'),
),
'category_custom_fields_type' => array(
array('dropdown', '2011, 2012'),
)
)
);
update_option(MY_CATEGORY_FIELDS, $tag_extra_fields);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment