{"id":210,"date":"2017-03-10T14:52:12","date_gmt":"2017-03-10T05:52:12","guid":{"rendered":"https:\/\/gianism.info\/?p=210"},"modified":"2017-03-10T14:52:12","modified_gmt":"2017-03-10T05:52:12","slug":"how-to-customize-chiramise","status":"publish","type":"post","link":"https:\/\/gianism.info\/ja\/2017\/03\/10\/how-to-customize-chiramise\/","title":{"rendered":"Chiramise\u306e\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u65b9\u6cd5"},"content":{"rendered":"<h2>\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u65b9\u6cd5<\/h2>\n<p>\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u306e\u3088\u304f\u3042\u308b\u65b9\u6cd5\u3092\u4ee5\u4e0b\u306b\u6319\u3052\u3066\u304a\u304d\u307e\u3059\u3002<\/p>\n<p><strong>\u6ce8\u610f:<\/strong>\u00a0\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306f\u6574\u5099\u4e2d\u3067\u3059\u3002\u5b8c\u6210\u3059\u308b\u307e\u3067\u3057\u3070\u3089\u304f\u304a\u5f85\u3061\u4e0b\u3055\u3044\u3002<\/p>\n<h3>\u30b1\u30fc\u30b91: \u6a29\u9650\u3092\u5909\u66f4\u3059\u308b<\/h3>\n<p>\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u6a29\u9650\u306f<code>read<\/code>\u3067\u3059\u3002\u3053\u3053\u3067\u306f\u3042\u306a\u305f\u304cBuddyPress\u306e\u3088\u3046\u306a\u30d5\u30a9\u30fc\u30e9\u30e0\u3092\u6301\u3063\u3066\u3044\u3066\u3001\u71b1\u5fc3\u306a\u30e6\u30fc\u30b6\u30fc\u3092<strong>VIP<\/strong>\u3060\u3068\u8a8d\u8b58\u3057\u3066\u3044\u308b\u3068\u4eee\u5b9a\u3057\u307e\u3057\u3087\u3046\u3002<\/p>\n<p>\u3053\u306e\u5834\u5408\u3001\u554f\u984c\u306f\u300c\u8ab0\u304c\u71b1\u5fc3\u306a\u306e\u304b\uff1f\u300d\u3068\u3044\u3046\u3053\u3068\u306b\u306a\u308a\u307e\u3059\u3002\u3053\u3053\u3067\u306f\u300c\u76f4\u8fd1\u4e00\u9031\u9593\u306710\u4ef6\u306e\u30b3\u30e1\u30f3\u30c8\u3092\u6295\u7a3f\u3057\u305f\u30e6\u30fc\u30b6\u30fc\u300d\u3068\u5b9a\u7fa9\u3057\u3066\u304a\u304d\u307e\u3057\u3087\u3046\u3002<\/p>\n<p>\u6226\u7565\u306f\u6b21\u306e\u901a\u308a\u3067\u3059\u3002\u30ab\u30b9\u30bf\u30e0\u6a29\u9650\u3092<code>vigorous_contributor<\/code>\u3068\u3057\u3001Chiramise\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u6a29\u9650\u3092\u4e0a\u66f8\u304d\u3057\u307e\u3059\u3002<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"php\">&lt;?php\r\nadd_filter('chiramise_capability', function($capability){\r\n    return 'vigorous_contributor';\r\n});<\/pre>\n<p>&nbsp;<\/p>\n<p>\u3053\u308c\u3067Chiramise\u306f\u3042\u306a\u305f\u306e\u6226\u7565\u3092\u7406\u89e3\u3057\u307e\u3057\u305f\u3002\u3057\u304b\u3057\u4eca\u306e\u3068\u3053\u308d\u3001\u3053\u306e<code>vigorous_contributor<\/code>\u3068\u3044\u3046\u6a29\u9650\u3092\u6301\u3064\u4eba\u306f\u3044\u307e\u305b\u3093\u3002<code>map_meta_cap<\/code>\u30d5\u30a3\u30eb\u30bf\u30fc\u3092\u5229\u7528\u3057\u3066\u3001\u3053\u308c\u3092\u5272\u308a\u5f53\u3066\u307e\u3057\u3087\u3046\u3002\u95a2\u6570<code>is_vigorous_user<\/code>\u00a0\u306f\u3059\u3067\u306b\u5b9a\u7fa9\u6e08\u307f\u3060\u3068\u4eee\u5b9a\u3057\u307e\u3059\u3002<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"php\">&lt;?php\r\n\r\nadd_filter('map_meta_cap', functoin($caps, $cap, $user_id){\r\n    switch( $cap ){\r\n        case 'vigorous_contributor':\r\n            if ( is_vigorous_user( $user_id ) ) {\r\n                 $caps[] = 'read';\r\n            } else {\r\n                 $caps[] = 'do_not_allow';\r\n            }\r\n            break;\r\n    }\r\n    return $caps;\r\n}, 10, 3);<\/pre>\n<p>&nbsp;<\/p>\n<p>\u3088\u3046\u3084\u304f\u3042\u306a\u305f\u306eVIP\u306f\u305d\u306e\u8ca2\u732e\u306b\u5fdc\u3058\u305f\u6271\u3044\u3092\u53d7\u3051\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3057\u305f\u3002\u3053\u308c\u306f\u5c11\u3057\u9060\u56de\u308a\u306b\u601d\u3048\u308b\u304b\u3082\u3057\u308c\u307e\u305b\u3093\u3002\u3057\u304b\u3057\u3001WordPress\u306e\u6a29\u9650\u30b7\u30b9\u30c6\u30e0\u306b\u5247\u308b\u3053\u3068\u3067\u3001\u4ed6\u306e\u30d7\u30e9\u30b0\u30a4\u30f3\u304c\u305d\u308c\u3092\u53c2\u7167\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u306e\u3067\u3059\uff01<\/p>\n<h3>\u30b1\u30fc\u30b92: \u8aac\u660e\u3092\u8868\u793a\u3059\u308b<\/h3>\n<p>\u30c7\u30d5\u30a9\u30eb\u30c8\u3060\u3068\u3001Chiramise\u306f\u30b3\u30f3\u30c6\u30f3\u30c4\u304c\u5236\u9650\u3055\u308c\u3066\u3044\u308b\u306e\u304b\u305d\u3046\u3067\u306a\u3044\u306e\u304b\u306b\u3064\u3044\u3066\u4f55\u3082\u8868\u793a\u3057\u307e\u305b\u3093\u3002\u3053\u308c\u306f\u79c1\u9054\u304c\u6020\u3051\u305f\u304b\u3089\u3067\u306f\u306a\u304f\u3001\u306a\u306b\u3092\u3059\u3079\u304d\u304b\u306e\u8aac\u660e\u304c\u3042\u306a\u305f\u306e\u53d6\u308b\u6226\u7565\u306b\u3088\u3063\u3066\u7570\u306a\u308b\u304b\u3089\u3067\u3059\u3002<\/p>\n<p>\u3053\u3053\u3067\u306f\u4f55\u304b\u3092\u8868\u793a\u3059\u308b\u65b9\u6cd5\u3060\u3051\u3092\u8aac\u660e\u3057\u307e\u3059\u3002\u306a\u306b\u3092\u8868\u793a\u3059\u308b\u304b\u306f\u30a2\u30ca\u30bf\u6b21\u7b2c\u3067\u3059\u3002<\/p>\n<p>\u30b3\u30f3\u30c6\u30f3\u30c4\u3068\u30e6\u30fc\u30b6\u30fc\u3092\u5224\u65ad\u3059\u308b\u305f\u3081\u306b\u5f79\u7acb\u30642\u3064\u306e\u95a2\u6570\u304c\u3042\u308a\u307e\u3059\u3002<\/p>\n<p><code>chiramise_should_check( $post )<\/code>\u306f\u6307\u5b9a\u3055\u308c\u305f\u6295\u7a3f\u304c\u6a29\u9650\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u5fc5\u8981\u304c\u3042\u308b\u304b\u3092\u8fd4\u3057\u307e\u3059\u3002\u3053\u308c\u306f\u6295\u7a3f\u304c<code>&lt;!--more--&gt;<\/code>\u3084<code>&lt;!--nextpage--&gt;<\/code>\u306e\u3088\u3046\u306a\u533a\u5207\u308a\u6587\u5b57\u3092\u542b\u3093\u3067\u3044\u308b\u304b\u3067\u5224\u5b9a\u3057\u307e\u3059\u3002<\/p>\n<p>\u7d9a\u3044\u3066\u3001<code>chiramise_can_read($post, $user)<\/code>\u306f\u6307\u5b9a\u3055\u308c\u305f\u30e6\u30fc\u30b6\u30fc\u304c\u6295\u7a3f\u3092\u8aad\u3080\u305f\u3081\u306b\u5fc5\u8981\u306a\u6a29\u9650\u3092\u6301\u3063\u3066\u3044\u308b\u304b\u3092\u8fd4\u3057\u307e\u3059\u3002<\/p>\n<p>\u3069\u3061\u3089\u306e\u95a2\u6570\u3082\u30eb\u30fc\u30d7\u306b\u5bfe\u5fdc\u3057\u3066\u3044\u307e\u3059\u3002\u3057\u305f\u304c\u3063\u3066\u3001\u73fe\u5728\u306e\u6295\u7a3f\u306b\u5bfe\u3059\u308b\u73fe\u5728\u306e\u30e6\u30fc\u30b6\u30fc\u306e\u6a29\u9650\u3092\u30c1\u30a7\u30c3\u30af\u3057\u305f\u3044\u306e\u3067\u3042\u308c\u3070\u3001\u5f15\u6570\u3092\u6e21\u3059\u5fc5\u8981\u306f\u3042\u308a\u307e\u305b\u3093\u3002<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"php\">&lt;?php if ( chiramise_should_check() &amp;&amp; ! chiramise_can_read() ) : ?&gt;\r\n\r\n    &lt;!-- This post is limited but user has no capability. --&gt;\r\n    &lt;p&gt;\r\n        You have to &lt;a href=\"&lt;?php echo wp_login_url(get_permalink()) ?&gt;\"&gt;login&lt;\/a&gt; to read the rest of content.\r\n    &lt;\/p&gt;\r\n\r\n&lt;?php endif; ?&gt;<\/pre>\n<p>&nbsp;<\/p>\n<p>\u3053\u306e\u30b5\u30a4\u30c8\u3067\u306f\u3001\u6a29\u9650\u3092\u6301\u305f\u306a\u3044\u30e6\u30fc\u30b6\u30fc\u306b\u5bfe\u3057\u3066\u30ed\u30b0\u30a4\u30f3\u3059\u308b\u3088\u3046\u8868\u793a\u3057\u3066\u3044\u307e\u3059\u3002<\/p>\n<div id=\"attachment_73\" style=\"width: 669px\" class=\"wp-caption aligncenter\"><a href=\"https:\/\/gianism.info\/wp-content\/uploads\/2016\/11\/75d84864dfae7b5e1ff49ad61d67e546.png\"><img aria-describedby=\"caption-attachment-73\" decoding=\"async\" loading=\"lazy\" class=\"size-full wp-image-73\" src=\"https:\/\/gianism.info\/wp-content\/uploads\/2016\/11\/75d84864dfae7b5e1ff49ad61d67e546.png\" alt=\"If content is limited, we display instruction for login.\" width=\"659\" height=\"655\" srcset=\"https:\/\/gianism.info\/wp-content\/uploads\/2016\/11\/75d84864dfae7b5e1ff49ad61d67e546.png 659w, https:\/\/gianism.info\/wp-content\/uploads\/2016\/11\/75d84864dfae7b5e1ff49ad61d67e546-150x150.png 150w, https:\/\/gianism.info\/wp-content\/uploads\/2016\/11\/75d84864dfae7b5e1ff49ad61d67e546-450x447.png 450w\" sizes=\"(max-width: 659px) 100vw, 659px\" \/><\/a><p id=\"caption-attachment-73\" class=\"wp-caption-text\">\u30b3\u30f3\u30c6\u30f3\u30c4\u304c\u5236\u9650\u3055\u308c\u3066\u3044\u308c\u3070\u3001\u30ed\u30b0\u30a4\u30f3\u3059\u308b\u3088\u3046\u6307\u793a\u3092\u51fa\u3057\u307e\u3059\u3002<\/p><\/div>\n<p>\u3082\u3057\u30e6\u30fc\u30b6\u30fc\u304cWooCommerce\u3067\u30c1\u30b1\u30c3\u30c8\u3092\u8cb7\u3046\u5fc5\u8981\u304c\u3042\u308b\u306a\u3089\u3070\u3001\u305d\u306e\u305f\u3081\u306e\u30ea\u30f3\u30af\u3092\u8868\u793a\u3059\u3079\u304d\u3067\u3057\u3087\u3046\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u65b9\u6cd5 \u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u306e\u3088\u304f\u3042\u308b\u65b9\u6cd5\u3092\u4ee5\u4e0b\u306b\u6319\u3052\u3066\u304a\u304d\u307e\u3059\u3002 \u6ce8\u610f:\u00a0\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306f\u6574\u5099\u4e2d\u3067\u3059\u3002\u5b8c\u6210\u3059\u308b\u307e\u3067\u3057\u3070\u3089\u304f\u304a\u5f85\u3061\u4e0b\u3055\u3044\u3002 \u30b1\u30fc\u30b91: \u6a29\u9650\u3092\u5909\u66f4\u3059\u308b \u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u6a29\u9650\u306fread\u3067\u3059\u3002\u3053\u3053\u3067\u306f\u3042\u306a\u305f\u304cBu [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":68,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_bbp_topic_count":0,"_bbp_reply_count":0,"_bbp_total_topic_count":0,"_bbp_total_reply_count":0,"_bbp_voice_count":0,"_bbp_anonymous_reply_count":0,"_bbp_topic_count_hidden":0,"_bbp_reply_count_hidden":0,"_bbp_forum_subforum_count":0,"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_locale":"ja","_original_post":"208","jetpack_publicize_message":"How to customize Chiramise","jetpack_is_tweetstorm":false,"jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","enabled":false}}},"categories":[10],"tags":[12],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/gianism.info\/wp-content\/uploads\/2016\/11\/facebook-cover.png","jetpack_shortlink":"https:\/\/wp.me\/p83N0f-3o","_links":{"self":[{"href":"https:\/\/gianism.info\/wp-json\/wp\/v2\/posts\/210"}],"collection":[{"href":"https:\/\/gianism.info\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/gianism.info\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/gianism.info\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/gianism.info\/wp-json\/wp\/v2\/comments?post=210"}],"version-history":[{"count":1,"href":"https:\/\/gianism.info\/wp-json\/wp\/v2\/posts\/210\/revisions"}],"predecessor-version":[{"id":212,"href":"https:\/\/gianism.info\/wp-json\/wp\/v2\/posts\/210\/revisions\/212"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/gianism.info\/wp-json\/wp\/v2\/media\/68"}],"wp:attachment":[{"href":"https:\/\/gianism.info\/wp-json\/wp\/v2\/media?parent=210"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/gianism.info\/wp-json\/wp\/v2\/categories?post=210"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/gianism.info\/wp-json\/wp\/v2\/tags?post=210"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}