WordPress 子テーマが便利

wordpresslogo-e1367355053944

ワードプレスの子テーマのメモ

ワードプレスの子テーマを使うと便利な理由は、親テーマのアップデートが来ても書き換えられる事がない!
そして、必要な箇所のphpだけ持ってきて修正する事が出来るから凄く便利!!!

使うのもすっごく簡単デス!

themeの中に ”名前_child“でファイルを作ってその中にstyle.css と function.php を追加するだけ!
主に必要なファイルがこの二つで style.cssには

テーマ

これを記述するだけです。

function.phpに記述するのは

<?php
add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’ );
function theme_enqueue_styles() {
wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ );
wp_enqueue_style( ‘child-style’,
get_stylesheet_directory_uri() . ‘/style.css’,
array(‘parent-style’)
);
}
?>

これを記述するだけです。

後は自分の直したい箇所のphpを子テーマの中に入れて編集すればそれが優先的に読み込まれて行きます。。。。。

 

関連記事

  1. EC-CUBE3系 on Plesk! Plesk搭載サーバーでEC-…

  2. macで使えるshareアプリ「Teleport」がすごく便利!

  3. Live Commerceを設置するまでの道のり… No.3

  4. EC-CUBE 2.4系→2.11系へ【はじめに…】

  5. WordPress3.1がリリースされました

  6. Affinity Designerの機能