- Magento 2 Theme Design(Second Edition)
- Fernando J Miguel Richard Carter
- 186字
- 2021-07-08 10:35:33
Magento theme inheritance
The frontend of Magento allows designers to create new themes based on the basic Blank theme, reusing the main code without changing its main structure. The fallback system is a theme's inheritance mechanism and allows the developers to create only the files that are necessary for customization.
The Luma theme, for example, uses the fallback system by inheriting the Blank theme's basic structure. The Luma theme's parent is declared in its theme.xml
file:
<theme xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Config/etc/theme.xsd"> <title>Magento Luma</title> <parent>Magento/blank</parent> <media> <preview_image>media/preview.jpg</preview_image> </media> </theme>
The inheritance works like an override system. You can create new themes by using the existent ones (parents) and by replacing (overriding) some existing file with the same name, but in your specific theme folder (child).
For example, if you create a new theme in folder app/design/frontend/<Vendor>/<theme>/
and declares Magento/blank as a parent theme, theme.xml
file and registration.php
, you have the entire blank theme structure ready to work in your new theme including RWD layouts and styles.
Let's say that you have a specific CSS available in the <theme_dir>/web/css
folder. If you delete this file, the fallback system will search the file in the <parent_theme_dir>/web/css
folder:

- OpenStack Cloud Computing Cookbook(Third Edition)
- Kibana Essentials
- SOA實踐
- Hands-On Machine Learning with scikit:learn and Scientific Python Toolkits
- 跟老齊學Python:輕松入門
- Mastering Python Scripting for System Administrators
- Web Development with MongoDB and Node(Third Edition)
- Photoshop CC移動UI設計案例教程(全彩慕課版·第2版)
- Mastering Drupal 8
- Java Web開發系統項目教程
- 零基礎Linux從入門到精通
- Visual C++.NET(2008)典型案例
- 精通Django 3 Web開發
- WebGIS之Leaflet全面解析
- 零基礎學Visual Basic第2版