以下の内容はhttps://blog.systemjp.net/entry/2016/01/08/211109より取得しました。


wordpressの子テーマの作り方

新規で作るには
まず、wp-content/themes/ にフォルダを作る 名前は何でもOK。
その中にstyle.cssを置く。
中身は

/*
Theme Name: Child Theme // 子テーマ名
Template: xxxxx // 親テーマのディレクトリ名
*/


続いて
以下内容のfunction.phpを作って入れとく

<?php
function enqueue_parent_css() {
  wp_enqueue_style( 'parent-css', get_template_directory_uri() . '/style.css' );
}
add_action( 'wp_enqueue_scripts', 'enqueue_parent_css' );


ネタ元




以上の内容はhttps://blog.systemjp.net/entry/2016/01/08/211109より取得しました。
このページはhttp://font.textar.tv/のウェブフォントを使用してます

不具合報告/要望等はこちらへお願いします。
モバイルやる夫Viewer Ver0.14