{LATEST_NEWS}
Entonces, supongamos que tenemos:
<title>{WEBSITE_TITLE}</title>
Eso deberá reemplazarse por su respectiva constante WEBSITE_TITLE. Esto lo esto haciendo con un preg_replace asi:
Código PHP:
// esto es un ejemplo
define('WEBSITE_TITLE', 'Mi pagina web.com');
$result='<title>{WEBSITE_TITLE}</title>';
$result=preg_replace("`\{(.*)?\}`i","$1",$result);
echo $result;
Código HTML:
<title>Mi pagina web.com</title>
THankz!