ワードプレスのテーマを変更する

ワードプレスのテーマを変更する

ワードプレスのテーマを変更する際の原稿を触れることなく、バックアップ(子テーマで表現)されたファイルを修正して使用する方法です。

  1. 使用している子のテーマを簡単に確認するために、テーマの名前を組み合わせて、「wp-content / themes "フォルダに新しいフォルダを作成します。(例:ソースのテーマは「twentyfifteen"であれば、 "twentyfifteen-child」にフォルダを作成)
  2. 元のテーマの「style.css」を子テーマのフォルダにコピーして、「Theme Name "、" Themplate」を下記のように変更します。
    /*
    Theme Name: Twenty Fifteen Child
    Theme URI: https://wordpress.org/themes/twentyfifteen/
    Template: twentyfifteen
    Author: the WordPress team
    Author URI: https://wordpress.org/
    Description: Our 2015 default theme is clean, blog-focused, and designed for clarity. Twenty Fifteen's simple, straightforward typography is readable on a wide variety of screen sizes, and suitable for multiple languages. We designed it using a mobile-first approach, meaning your content takes center-stage, regardless of whether your visitors arrive by smartphone, tablet, laptop, or desktop computer.
    Version: 1.5
    License: GNU General Public License v2 or later
    License URI: http://www.gnu.org/licenses/gpl-2.0.html
    Tags: black, blue, gray, pink, purple, white, yellow, dark, light, two-columns, left-sidebar, fixed-layout, responsive-layout, accessibility-ready, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-images, microformats, post-formats, rtl-language-support, sticky-post, threaded-comments, translation-ready
    Text Domain: twentyfifteenTemplate: twntyfifteen
    This theme, like WordPress, is licensed under the GPL.
    Use it to make something cool, have fun, and share what you've learned with others.
    */
    
  3. 子テーマのフォルダに「functions.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' );
    }
    ?>
    
  4. 元のテーマの "screenshot.png"を子テーマのフォルダにコピーします。
  5. 変更元のテーマのファイルを子テーマのフォルダにコピーした後、修正して使用します。

(注:http://codex.wordpress.org/Child_Themes)

guest
0 Comments
Inline Feedbacks
View all comments