STINGER8の子テーマを別の子テーマに変更するには ~ wordpress

2017年10月9日

Stinger8の子テーマを一から作るの大変なので、他の作者さんのものを使わせていただきました。ただし、Stingerのバージョンが3のため、一部変更しなければなりません。

CANDY CRAZY

 

子テーマのstyle.cssの変更

デフォルトのstyle.cssは次のものです。

/*
Theme Name: STINGER8 Child
Template: stinger8
Version: 20170614
*/
/*media Queries タブレットサイズ(960px以下)
----------------------------------------------------*/
@media only screen and (max-width: 960x) {
/*-- ここまで --*/
}
/*media Queries タブレットサイズ(600px以上)
----------------------------------------------------*/
@media only screen and (min-width: 600px) {
/*-- ここまで --*/
}
/*media Queries PCサイズ(960px以上)
----------------------------------------------------*/
@media print, screen and (min-width: 960px) {
/*-- ここまで --*/
}

これから、room9 から “CANDY CRAZY"の子テーマをダウンロードして、子テーマの同じ場所にアップロードします。そのままでは動かなかったので、コメントで囲まれた部分の親テンプレート名を

『Template: stinger3ver20131216』

から

『Template: stinger8』

に変更します。

それと

@charset “UTF-8";

@import url(“../stinger3ver20131216/style.css");

をコメントアウトします。

/*---------------------------------------------------------
Theme Name: stinger3 child theme -room9 custum 003 "CANDY CRAZY"-
Template: stinger8
Description: Customize css for stinger3
Auther: Qtaro
Author URI: http://room9.jp
License:
License URI:
Version: 20131216 (for stinger3ver20131216)
---------------------------------------------------------*/
/*@charset "UTF-8";
@import url("../stinger8/style.css");
*/

これで、"CANDY CRAZY"のテーマに変えることができました。

8beat-style

また、おぐらさんがSTINGER8用に『8beat-style』の子テーマを提供されています。

違った趣になるので、一度ご覧になっては如何でしょうか。

https://8beat-studio.net/stinger8-childtheme-download/

 

wordpress

Posted by eightban