Magento – how to add minicart in custom header block in magento2

customheadermagento2mini-carttheme

i have created block in theme in magento2.
block location is "theme-folder/template/html/header.phtml".
i want to add minicart in this Phtml file.

Best Answer

Not Tried but you can add directly in phtml with below code

<?php  echo $this->getLayout()
          ->createBlock('Magento\Checkout\Block\Cart\Sidebar')
          ->setTemplate('Magento_Checkout::cart/minicart.phtml')
          ->toHtml(); ?>