{"id":2763,"date":"2012-12-04T23:43:13","date_gmt":"2012-12-04T14:43:13","guid":{"rendered":"http:\/\/njet.oops.jp\/wordpress\/?p=2763"},"modified":"2012-12-05T00:18:25","modified_gmt":"2012-12-04T15:18:25","slug":"wordpress%e3%81%a7%e3%82%ab%e3%83%86%e3%82%b4%e3%83%aa%e3%83%bc%e4%b8%80%e6%8b%ac%e7%99%bb%e9%8c%b2%e3%82%92%e6%89%8b%e5%8b%95%e3%81%a7%e8%a1%8c%e3%81%86%e5%ae%9f%e9%a8%93","status":"publish","type":"post","link":"https:\/\/njet.oops.jp\/wordpress\/2012\/12\/04\/wordpress%e3%81%a7%e3%82%ab%e3%83%86%e3%82%b4%e3%83%aa%e3%83%bc%e4%b8%80%e6%8b%ac%e7%99%bb%e9%8c%b2%e3%82%92%e6%89%8b%e5%8b%95%e3%81%a7%e8%a1%8c%e3%81%86%e5%ae%9f%e9%a8%93\/","title":{"rendered":"WordPress\u3067\u30ab\u30c6\u30b4\u30ea\u30fc\u4e00\u62ec\u767b\u9332\u3092\u624b\u52d5\u3067\u884c\u3046\u5b9f\u9a13"},"content":{"rendered":"<p>\u30ab\u30c6\u30b4\u30ea\u30fc\u3092\u4e00\u62ec\u767b\u9332\u3059\u308b\u30d7\u30e9\u30b0\u30a4\u30f3\u3082\u3044\u304f\u3064\u304b\u4f7f\u3063\u3066\u307f\u305f\u304c\uff0c\u305d\u306e\u5834\u3067\u767b\u9332\u3059\u308b\u3082\u306e\u3070\u304b\u308a\u3067\uff0c\u4e8b\u524d\u306b\u7528\u610f\u3055\u308c\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u306a\u3069\u3092\u8aad\u307f\u8fbc\u3093\u3067\uff0c\u4e00\u62ec\u3057\u3066\u767b\u9332\u3059\u308b\u3082\u306e\u306f\u898b\u5f53\u305f\u3089\u306a\u304b\u3063\u305f\u3002\u305d\u3053\u3067\uff0c\u898b\u3088\u3046\u898b\u307e\u306d\u3067\u81ea\u4f5c\u3059\u308b\u3053\u3068\u306b\u3057\u305f\u3002<\/p>\n<p>\u5229\u7528\u3059\u308b\u306e\u306f\uff0cwp_create_category() \u3068\u3044\u3046 WordPress \u306e\u5185\u90e8\u95a2\u6570\u3002\u3053\u308c\u3092\u4f7f\u3046\u305f\u3081\u306b\u306f\uff0c\u3053\u308c\u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30d5\u30a1\u30a4\u30eb\u3092\u30a4\u30f3\u30af\u30eb\u30fc\u30c9\u3057\u306a\u304f\u3066\u306f\u306a\u3089\u306a\u3044\u3089\u3057\u3044\u3002<\/p>\n<p>\u6539\u884c\u3067\u533a\u5207\u3063\u305f\u6587\u5b57\u5217\u3092\u30d2\u30a2\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3067\u5b9a\u7fa9\u3057\u3066\uff0c\u3053\u308c\u3092\u6539\u884c\u3067\u5206\u5272\u3057\u3066\u914d\u5217\u306b\u3059\u308b\u3002\u305d\u3057\u3066\uff0c\u914d\u5217\u306e\u5404\u3005\u306e\u6587\u5b57\u5217\u306b\u5bfe\u3057\u3066\uff0c\u30ab\u30c6\u30b4\u30ea\u30fc\u3068\u3057\u3066\u767b\u9332\u3059\u308b\u3068\u3044\u3046\u3082\u306e\u3002<\/p>\n<pre class=\"brush: php; title: ; notranslate\" title=\"\">\r\n\/\/ \u30ab\u30c6\u30b4\u30ea\u30fc\u3092\u624b\u52d5\u3067\u767b\u9332\u3059\u308b\u5b9f\u9a13\r\nfunction create_my_categories() {\r\n$cat_str =\r\n&lt;&lt;&lt;CATDATA\r\n\u521d\u7b49\u6570\u8ad6\r\n\u53ef\u63db\u74b0\u8ad6\r\n\u30ac\u30ed\u30a2\u7406\u8ad6\r\n\u4ee3\u6570\u66f2\u7dda\u8ad6\r\n\u8907\u7d20\u591a\u69d8\u4f53\r\n\u4ee3\u6570\u7684\u6570\u8ad6\r\n\u89e3\u6790\u7684\u6570\u8ad6\r\nCATDATA;\r\n\r\n\tinclude_once(ABSPATH . 'wp-load.php');\r\n\tinclude_once(ABSPATH . 'wp-admin\/includes\/taxonomy.php');\r\n\r\n\t$cat_array = explode(&quot;\\n&quot;, $cat_str);\r\n\tforeach($cat_array as $value) {\r\n\t\twp_create_category($value);\r\n\t}\r\n}\r\n<\/pre>\n<p>\u3068\u308a\u3042\u3048\u305a\uff0c\u5b9f\u9a13\u306f\u6210\u529f\u3002\u81ea\u5bb6\u7528\u3068\u3057\u3066\u306f\uff0c\u3053\u308c\u3092 functions.php \u306b\u8ffd\u52a0\u3057\u3066\uff0c<\/p>\n<pre class=\"brush: php; title: ; notranslate\" title=\"\">\r\nadd_action('init', 'create_my_categories');\r\n<\/pre>\n<p>\u3068\u304b\u3059\u308c\u3070\u826f\u3044\u3002\u6c4e\u7528\u6027\u3092\u8003\u3048\u308b\u306a\u3089\u30d5\u30a1\u30a4\u30eb\u304b\u3089\u8aad\u307f\u8fbc\u3080\u3088\u3046\u306b\u3057\u3066\u30d7\u30e9\u30b0\u30a4\u30f3\u3068\u3057\u3066\u52d5\u4f5c\u3055\u305b\u308b\u306e\u304c\u826f\u3044\u306e\u3060\u308d\u3046\u3002\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u4f5c\u308a\u65b9\uff0c\u3059\u3063\u304b\u308a\u5fd8\u308c\u3066\u3057\u307e\u3063\u305f\u304c\u30fb\u30fb\u30fb\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u30ab\u30c6\u30b4\u30ea\u30fc\u3092\u4e00\u62ec\u767b\u9332\u3059\u308b\u30d7\u30e9\u30b0\u30a4\u30f3\u3082\u3044\u304f\u3064\u304b\u4f7f\u3063\u3066\u307f\u305f\u304c\uff0c\u305d\u306e\u5834\u3067\u767b\u9332\u3059\u308b\u3082\u306e\u3070\u304b\u308a\u3067\uff0c\u4e8b\u524d\u306b\u7528\u610f\u3055\u308c\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u306a\u3069\u3092\u8aad\u307f\u8fbc\u3093\u3067\uff0c\u4e00\u62ec\u3057\u3066\u767b\u9332\u3059\u308b\u3082\u306e\u306f\u898b\u5f53\u305f\u3089\u306a\u304b\u3063\u305f\u3002\u305d\u3053\u3067\uff0c\u898b\u3088\u3046\u898b\u307e\u306d\u3067\u81ea\u4f5c\u3059\u308b\u3053\u3068\u306b\u3057\u305f\u3002 [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[53,3,16],"tags":[],"class_list":["post-2763","post","type-post","status-publish","format-standard","hentry","category-php","category-wordpress","category-16"],"_links":{"self":[{"href":"https:\/\/njet.oops.jp\/wordpress\/wp-json\/wp\/v2\/posts\/2763","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/njet.oops.jp\/wordpress\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/njet.oops.jp\/wordpress\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/njet.oops.jp\/wordpress\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/njet.oops.jp\/wordpress\/wp-json\/wp\/v2\/comments?post=2763"}],"version-history":[{"count":5,"href":"https:\/\/njet.oops.jp\/wordpress\/wp-json\/wp\/v2\/posts\/2763\/revisions"}],"predecessor-version":[{"id":2776,"href":"https:\/\/njet.oops.jp\/wordpress\/wp-json\/wp\/v2\/posts\/2763\/revisions\/2776"}],"wp:attachment":[{"href":"https:\/\/njet.oops.jp\/wordpress\/wp-json\/wp\/v2\/media?parent=2763"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/njet.oops.jp\/wordpress\/wp-json\/wp\/v2\/categories?post=2763"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/njet.oops.jp\/wordpress\/wp-json\/wp\/v2\/tags?post=2763"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}