Kilho.net
IT Ramblings

Modifica del tema WordPress

È un metodo per modificare e usare i file di backup (rappresentati da un tema child), senza toccare il tema originale.

  1. Per riconoscere facilmente il tema child in uso, crea una nuova cartella in “wp-content/themes” combinando il nome del tema. (Es.: se il tema originale è “twentyfifteen”, crea la cartella “twentyfifteen-child”)
  2. Copia “style.css” del tema originale nella cartella del tema child e modifica “Theme Name” e “Themplate” come indicato di seguito.
    [php]/*
    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.
    */
    [/php]
  3. Crea il file “functions.php” nella cartella del tema child usando il codice seguente.
    [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’ );
    }
    ?>
    [/php]
  4. Copia “screenshot.png” del tema originale nella cartella del tema child.
  5. Copia nella cartella del tema child i file del tema originale che vuoi modificare, quindi modificali e usali.

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

Lascia un commento

Il tuo indirizzo email non sarà pubblicato. I campi obbligatori sono contrassegnati *