Rendering a module position within a template override
Ever wanted to render breadcrumbs just below the article title when only viewing a single article? Well, I did! So, I added the following code to /templates/construct5/html/com_content/article/default.php to just after <php endif;> on line 74:
<?php
$doc = JFactory::getDocument();
$renderer = $doc->loadRenderer('modules');
$xhtml = array('style' => 'xhtml');
echo $renderer->render('breadcrumbs', $xhtml, null) ?>
and viola!
