Clock子テーマの使い方
- Clockの子テーマ(clock-child.zip)をダウンロードします。
- 解凍ソフトで解凍します。
- style.css
- functions.php
- screenshot.png
- これらのファイルにカスタマイズ用のコードを書きます。
- どちらかの方法でアップロードします。
- 圧縮して、WordPressの管理画面からアップロード。
- FTPソフトを使いアップロード。
カスタマイズ方法
style.css
@charset "UTF-8";
/*
Theme Name: Clock Child
Author: Colors Themes
Author URI: https://colors-themes.com/clock/
Description: Clock Child Theme
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Template: clock
Text Domain: clock-child
Tags: custom-background, custom-logo, custom-menu
*/
/* ----------------------------------------------------------------------
# style
---------------------------------------------------------------------- */
functions.php
<?php
function clock_child_scripts() {
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
}
add_action( 'wp_enqueue_scripts', 'clock_child_scripts' );
/* ----------------------------------------------------------------------
# functions
---------------------------------------------------------------------- */
screenshot.png