I have a view, header.php that loads into various controller methods. It contains my html opening tag, a base tag for my relative links, and some meta tags that I call on every page of my application. Is there a way to load helpers that display meta tags and a base url so that they are available for header.php every time I load without having to turn it on $this->load->helper('html');and $this->load->helper('url');every time I'm $this->load->view('templates/header', $data);in the controller to load header.php?
source
share