子テーマ用のfunctuons.phの編集
-
wordpress初心者です。子テーマを作ったほうが良いという記事を拝見し、functuons.phpは親と別の関数にしなければならないということは分かったのですが、php初心者で、どう変更したらよいか全くわかりません。
よろしかったら、ご教授をお願い致します。
親テーマのfunctuons.phpの内容が下記になります。<?php
define( ‘TEST_THEME_BASE_URL’, get_template_directory_uri());
define( ‘TEST_OPTIONS_FRAMEWORK’, get_template_directory().’/admin/’ );
define( ‘TEST_OPTIONS_FRAMEWORK_URI’, TEST_THEME_BASE_URL. ‘/admin/’);
define(‘TEST_OPTIONS_PREFIXED’ ,’test_’);
/**
* Required: include options framework.
*/load_template( trailingslashit( get_template_directory() ) . ‘admin/options-framework.php’ );
/**
* Mobile Detect Library
*/
if(!class_exists(“Mobile_Detect”)){
load_template( trailingslashit( get_template_directory() ) . ‘includes/Mobile_Detect.php’ );
}
/**
* Theme setup
*/load_template( trailingslashit( get_template_directory() ) . ‘includes/theme-setup.php’ );
/**
* Theme Functions
*/load_template( trailingslashit( get_template_directory() ) . ‘includes/theme-functions.php’ );
/**
* Theme breadcrumb
*/
load_template( trailingslashit( get_template_directory() ) . ‘includes/class-breadcrumb.php’);
/**
* Theme widget
*/load_template( trailingslashit( get_template_directory() ) . ‘includes/theme-widget.php’ );
- トピック「子テーマ用のfunctuons.phの編集」には新たに返信することはできません。