{"id":6398,"date":"2020-09-08T18:52:34","date_gmt":"2020-09-08T09:52:34","guid":{"rendered":"https:\/\/east19-mikas.com\/?p=6398"},"modified":"2026-06-27T20:21:17","modified_gmt":"2026-06-27T11:21:17","slug":"bizlight%e3%81%ae%e5%ad%90%e3%83%86%e3%83%bc%e3%83%9e%e3%82%92%e4%bd%9c%e6%88%90","status":"publish","type":"post","link":"https:\/\/east19-mikas.com\/mpat\/?p=6398","title":{"rendered":"Bizlight\u306e\u5b50\u30c6\u30fc\u30de\u3092\u4f5c\u6210"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Bizligh\u306e\u5b50\u30c6\u30fc\u30de\u3092\u4f5c\u6210\u3057\u307e\u3059<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Bizlight\u306e\u5b50\u30c6\u30fc\u30de\u3092\u4f5c\u308b<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress\u306e\u5b50\u30c6\u30fc\u30de\u3092\u4f5c\u308b\u306b\u306f\u3001\u30b5\u30a4\u30c8\u306e\u30c6\u30fc\u30de\u30d5\u30a9\u30eb\u30c0\u306b\u30a2\u30af\u30bb\u30b9\u3057\u3001top\/wp-content\/themes\/ \u30d5\u30a9\u30eb\u30c0\u306b\u30a2\u30af\u30bb\u30b9\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002\u3053\u306e themes \u30d5\u30a9\u30eb\u30c0\u5185\u306b\u3001\u5b50\u30c6\u30fc\u30de\u540d\u306e\u30d5\u30a9\u30eb\u30c0\u3092\u4f5c\u6210\u3057\u307e\u3059\u3002<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u30d5\u30a9\u30eb\u30c0\u306e\u4e2d\u306b\u3001\u6700\u4f4e\u9650\u5fc5\u8981\u306a\u30d5\u30a1\u30a4\u30eb\u306f\u3001functions.php \u3068 style.css \u30d5\u30a1\u30a4\u30eb\u3067\u3059\u3002\u53c8\u30c6\u30fc\u30de\u753b\u50cf\u306f\u3001\u89aa\u30c6\u30fc\u30de\u306e\u753b\u50cf\u3092\u30b3\u30d4\u30fc\u3057\u307e\u3057\u3087\u3046\u3002\u4f5c\u308a\u65b9\u306f\u3001\u76f4\u63a5\u30b5\u30fc\u30d0\u30fc\u306broot\u3067\u30ed\u30b0\u30a4\u30f3\u3057\u3066\u4f5c\u6210\u3059\u308b\u65b9\u6cd5\u3068\u3001\u30ed\u30fc\u30ab\u30eb\u3067\u5fc5\u8981\u306a\u30d5\u30a1\u30a4\u30eb\u3092\u7528\u610f\u3057\u3066\u3001\u30b5\u30fc\u30d0\u30fc\u306b\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u65b9\u6cd5\u304c\u3042\u308a\u307e\u3059\u3002\u3053\u3053\u3067\u306f\u524d\u8005\u306e\u65b9\u6cd5\u3067\u4f5c\u6210\u3057\u307e\u3059\u3002<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u6700\u521d\u306bSSH\u63a5\u7d9a\u3057\u3066\u30c6\u30fc\u30de\u30d5\u30a9\u30eb\u30c0\u3078\u79fb\u52d5\u3057\u307e\u3059\u3002\u30b3\u30de\u30f3\u30c9\u4f8b\u3092\u793a\u3057\u307e\u3059\u3002<\/p>\n\n\n\n<pre class=\"wp-block-preformatted has-white-color has-text-color has-background has-link-color wp-elements-43f21288b8fd1eda55a89778141eab78\" style=\"background-color:#444444\"># <mark style=\"background-color:rgba(0, 0, 0, 0);color:#ffff00\" class=\"has-inline-color\">cd \/var\/wwww\/html\/[top]\/wp-content\/themes\/<br><\/mark><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-white-color\">#<\/mark><mark style=\"background-color:rgba(0, 0, 0, 0);color:#ffff00\" class=\"has-inline-color\"> mkdir [child-folder]<br><\/mark><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-white-color\"># <\/mark><mark style=\"background-color:rgba(0, 0, 0, 0);color:#ffff00\" class=\"has-inline-color\">cd [child-folder]<br><\/mark><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-white-color\">#<\/mark><mark style=\"background-color:rgba(0, 0, 0, 0);color:#ffff00\" class=\"has-inline-color\"> vi functions.php<\/mark><br># shift+i<br>&lt;?php<br>add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );<br>function theme_enqueue_styles() {<br>  wp_enqueue_style( 'parent-style', get_template_directory_uri() . '\/style.css' );<br>  wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '\/style.css', array('parent-style')<br>);<br>}<br>?&gt;<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\u7d9a\u3051\u3066 style.css\u3092\u4f5c\u6210\u3057\u307e\u3059\u3002\u3053\u306e style.css \u306b\u89aa\u30c6\u30fc\u30de\u306e\u5b50\u30c6\u30fc\u30de\u3067\u3042\u308b\u4e8b\u3092\u8a18\u8f09\u3057\u307e\u3059\u3002<\/p>\n\n\n\n<pre class=\"wp-block-preformatted has-white-color has-text-color has-background has-link-color wp-elements-60256af5c3dae386fe1ea10a4d326695\" style=\"background-color:#444444\"># <mark style=\"background-color:rgba(0, 0, 0, 0);color:#ffff00\" class=\"has-inline-color\">vi style.css<br><\/mark><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-white-color\">#<\/mark><mark style=\"background-color:rgba(0, 0, 0, 0);color:#ffff00\" class=\"has-inline-color\"> shift+i<\/mark><br>\/*<br><br>Theme Name: omotenasi<br>Theme URI: https:\/\/east19-mikas.com\/mput\/<br>Description bizlight Child Theme<br>Author:     user name<br>Author URI: https:\/\/east19-mikas.com<br>Template:  bizlight<br>Version:  1.3.4<br>License:   GNU General Public License v2 or later<br>License URI:  http:\/\/www.gnu.org\/licenses\/gpl-2.0.html<br>Tags:    light, dark, two-columns, top-slider, responsive-layout, accessibility-ready<br>Text Domain: bizlight child<br>*\/<br><mark style=\"background-color:rgba(0, 0, 0, 0);color:#00ff00\" class=\"has-inline-color\">\u3053\u306e\u5f8c\u306b\u8ffd\u8a18\u3059\u308bCSS\u30b3\u30fc\u30c9\u3092\u8a18\u5165\u3057\u3066\u884c\u304d\u307e\u3059\u3002<\/mark><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\u6b21\u306b\u30c6\u30fc\u30de\u306e\u753b\u50cf\u30d5\u30a1\u30a4\u30eb\u3092\u89aa\u30c6\u30fc\u30de\u304b\u3089\u30b3\u30d4\u30fc\u3057\u3066\u6765\u307e\u3059\u3002<\/p>\n\n\n\n<pre class=\"wp-block-preformatted has-white-color has-text-color has-background has-link-color wp-elements-df7bb83952c1d9d4ff9e75e62316730c\" style=\"background-color:#444444\"># <mark style=\"background-color:rgba(0, 0, 0, 0);color:#ffff00\" class=\"has-inline-color\">cp ..\/bizlight\/screenshot.png .\/<\/mark><br>\u6700\u5f8c\u306b\u5b50\u30c6\u30fc\u30de\u306e\u4e0a\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3001\u6240\u6709\u6a29\u3092Apache\u306b\u5909\u66f4\u3057\u307e\u3059\u3002<br># <mark style=\"background-color:rgba(0, 0, 0, 0);color:#ffff00\" class=\"has-inline-color\">cd ..\/<\/mark><br># <mark style=\"background-color:rgba(0, 0, 0, 0);color:#ffff00\" class=\"has-inline-color\">chown -R apache:apache [child-folder]<br><\/mark><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-white-color\"># <\/mark><mark style=\"background-color:rgba(0, 0, 0, 0);color:#ffff00\" class=\"has-inline-color\">ll<\/mark><br>\u5408\u8a08 144<br>-rw-r--r--. 1 apache apache    509  9\u6708  1 17:22 functions.php<br>-rw-r--r--. 1 apache apache 122379  8\u6708 15 18:10 screenshot.png<br>-rw-r--r--. 1 apache apache   8105  9\u6708  2 09:25 style.css<br>\u5ff5\u306e\u305f\u3081\u3001SELINUX\u306e\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8\u3092\u78ba\u8a8d\u3057\u307e\u3059\u3002<br># <mark style=\"background-color:rgba(0, 0, 0, 0);color:#ffff00\" class=\"has-inline-color\">ls -Z<\/mark><br>    system_u:object_r:httpd_sys_rw_content_t:s0 bizlight<br>unconfined_u:object_r:httpd_sys_rw_content_t:s0 cocoon-child-master<br>    system_u:object_r:httpd_sys_rw_content_t:s0 cocoon-master<br>unconfined_u:object_r:httpd_sys_rw_content_t:s0 index.php<br>    system_u:object_r:httpd_sys_rw_content_t:s0 newsup<br>unconfined_u:object_r:httpd_sys_rw_content_t:s0 [child-folder]<br>    system_u:object_r:httpd_sys_rw_content_t:s0 twentyseventeen<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\u3053\u306e\u5f8c\u3001WordPress\u306e\u30c6\u30fc\u30de\u306e\u30da\u30fc\u30b8\u3067 [child-folder] \u540d\u306e\u30c6\u30fc\u30de\u3092\u6709\u52b9\u5316\u3057\u307e\u3059\u3002<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Bizligh\u306e\u5b50\u30c6\u30fc\u30de\u3092\u4f5c\u6210\u3057\u307e\u3059 Bizlig&#8230;<\/p>\n","protected":false},"author":1,"featured_media":8099,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[18,16],"tags":[211],"class_list":["post-6398","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-theme","category-wordpress","tag-211"],"_links":{"self":[{"href":"https:\/\/east19-mikas.com\/mpat\/index.php?rest_route=\/wp\/v2\/posts\/6398","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/east19-mikas.com\/mpat\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/east19-mikas.com\/mpat\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/east19-mikas.com\/mpat\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/east19-mikas.com\/mpat\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=6398"}],"version-history":[{"count":3,"href":"https:\/\/east19-mikas.com\/mpat\/index.php?rest_route=\/wp\/v2\/posts\/6398\/revisions"}],"predecessor-version":[{"id":11521,"href":"https:\/\/east19-mikas.com\/mpat\/index.php?rest_route=\/wp\/v2\/posts\/6398\/revisions\/11521"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/east19-mikas.com\/mpat\/index.php?rest_route=\/wp\/v2\/media\/8099"}],"wp:attachment":[{"href":"https:\/\/east19-mikas.com\/mpat\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=6398"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/east19-mikas.com\/mpat\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=6398"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/east19-mikas.com\/mpat\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=6398"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}