1 단계 2 후속 디렉토리 아래 젠토에 새 테마를 확인
응용 프로그램/디자인/프론트 엔드///Magento_Theme/템플릿/공급 업체 \의 젠토에서 HTML
2 단계 복사 header.phtml 파일을 \ module-theme \ view \ frontend \ templates \ html로 복사하여 app/design/frontend// Magento_Theme/templates/html에 붙여 넣기
3 단계. 이제 header.phtml 파일을 변경할 수 있습니다.
Image can add in header by below code.
<?php
$_objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$storeManager = $_objectManager->get('Magento\Store\Model\StoreManagerInterface');
$currentStore = $storeManager->getStore();
$mediaUrl = $currentStore->getBaseUrl(\Magento\Framework\UrlInterface::URL_TYPE_MEDIA);
?>
<img scr="<?php echo $mediaUrl.'/image.jpg' ?>">
Stack Overflow가 [프로그래밍 관련] (http://stackoverflow.com/help/on-topic) Q & A 사이트이기 때문에이 질문을 주제와 관련이 없도록 닫으려고합니다. 귀하의 질문은 프로그래밍에 관한 것이 아닙니다. 아마도 http://magento.stackexchange.com에 게시해야할까요? – Enigmativity