Upgrade to Pro — share decks privately, control downloads, hide ads and more …

実践に見るテーマの制作方法

Sponsored · Ship Features Fearlessly Turn features on and off without deploys. Used by thousands of Ruby developers.
Avatar for Welcart Welcart
October 25, 2019

 実践に見るテーマの制作方法

Avatar for Welcart

Welcart

October 25, 2019
Tweet

More Decks by Welcart

Other Decks in Business

Transcript

  1. functions.phpの設定 子テーマのスタイルシートが読み込まれない場合 <?php add_action( 'wp_enqueue_scripts', 'child_enqueue_styles' ); function child_enqueue_styles() {

    wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css' ); }
  2. usces_cart.cssの設定 方法1:親テーマの usces_cart.css を子テーマにコピー 方法2:親テーマの usces_cart.css を読み込む add_action( 'wp_enqueue_scripts', 'child_enqueue_styles'

    ); function child_enqueue_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); wp_enqueue_style( 'parent-cart', get_template_directory_uri() .           '/usces_cart.css', array('parent-style', 'usces_default_css') ); } 推奨
  3. 「 Sport 」テーマ構成 404.php wc-templates       archive.php auto_delivery.css

    category.php footer.php front-page.php functions.php header.php page.php screenshot.png search.php sidebar-footer.php single.php style.css usces_cart.css 親テーマから修正したいテンプレートをコピー
  4. 「 Sport 」テーマ構成 assets       404.php inc  

        languages       page-templates       template-parts       wc-templates       archive.php auto_delivery.css category.php footer.php front-page.php functions.php header.php page.php screenshot.png search.php sidebar-footer.php single.php style.css usces_cart.css 子テーマ用にテンプレート追加
  5. 「News」テーマ構成 inc       template-parts       wc-templates

          archive.php category.php front-page.php functions.php header.php dlseller.css screenshot.png search-article.php sidebar-footer.php single.php style.css usces_cart.css 親テーマから修正したいテンプレートをコピー
  6. 「News」テーマ構成 assets       inc       languages

          customize       template-parts       wc-templates       archive.php category.php front-page.php functions.php header.php dlseller.css screenshot.png search-article.php sidebar-footer.php single.php style.css usces_cart.css 子テーマ用にテンプレート追加 images