Call XML layout directly into phtml file in Magento 2

<?php
$layoutObj = $obj->get(‘Magento\Framework\View\Layout’);
$html = $layoutObj->renderNonCachedElement(‘product.info’); // Name of layout
echo $html;
?>

Leave a comment