HI.
I am creating a language file for my header controller
the language file will contain some text that will be based on the header template file.
Question
I would like to know if i plate text in language file for description and keywords and title if it will pick it up in header.tpl/and or php
example.
Language <–
$_['text_title'] = 'Your Website Name';
$_['text_description'] = 'Blah Blah Blah Is Something';
$_['text_keywords'] = 'Blah, Blah, Blah';
$_['text_home'] = 'Home';
Template <–
<head>
<meta charset="UTF-8">
<meta name="description" content="<?php echo $text_description; ?>">
<meta name="keywords" content="<?php echo $text_keywords; ?>">
<title><?php echo $text_title; ?></title>
<link rel="stylesheet" type="text/css" href="stylesheet/stylesheet.css">
</head>