Created
May 30, 2014 16:59
-
-
Save 1shiharat/d3cdfc7e956cb718800b to your computer and use it in GitHub Desktop.
theme-customizer-setting.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"setting": { | |
"theme_slug": "growcreater_basic" , | |
"capability": "edit_theme_options" | |
}, | |
"sections" : { | |
"gg_general_settings": { | |
"title" : "基本的な設定", | |
"priority" : 29, | |
"setting" : { | |
"general_keywords" : { | |
"transport" : "postMessage", | |
"default" : "", | |
"label" : "キーワードをカンマ区切りで入力してください。", | |
"type" : "option" | |
}, | |
"general_analytics_code" : { | |
"transport" : "postMessage", | |
"default" : "", | |
"label" : "Google Analytics コードを入力してください", | |
"type" : "option" | |
} | |
} | |
}, | |
"gg_logo_settings": { | |
"title" : "ロゴの設定", | |
"priority" : 30, | |
"setting" : { | |
"logo_choice" : { | |
"transport" : "refresh", | |
"default" : "text", | |
"label" : "ロゴの表示方法の選択", | |
"type" : "select", | |
"choices" : { | |
"text" : "テキスト", | |
"image" : "画像" | |
} | |
}, | |
"logo_image_upload" : { | |
"transport" : "postMessage", | |
"default" : "", | |
"label" : "ロゴ画像アップロード", | |
"type" : "image" | |
}, | |
"logo_size" : { | |
"transport" : "postMessage", | |
"default" : "small", | |
"label" : "ロゴの大きさ", | |
"type" : "radio", | |
"choices" : { | |
"small" : "小", | |
"normal" : "中", | |
"full" : "フル" | |
} | |
}, | |
"logo_align" : { | |
"transport" : "postMessage", | |
"default" : "left", | |
"label" : "ロゴの位置", | |
"type" : "radio", | |
"choices" : { | |
"left" : "左", | |
"center" : "センター", | |
"right" : "右" | |
} | |
}, | |
"logo_text_color" : { | |
"transport" : "postMessage", | |
"default" : "#FFF", | |
"label" : "テキスト時のロゴカラー", | |
"type" : "color" | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment