Nasıl smarty tarafından her sayfa için başlık atamak?

1 Cevap

i sayfaları bir sürü var ve ben nasıl id can her sayfa için başlık atamak istiyor?

i ana sayfa atamak ama sayfaları atanamıyor. Değişken header.tpl katacak

sayfa (contact.php, order.php, products.php)

i'm using {$hometitle} $smarty->assign('hometitle',$hometitle);

1 Cevap

Not sure I understood the question: Does this help?

Lütfen php:

<?php
  $smarty = new Smarty();
  $smarty->assign('hometitle',$hometitle);
  $smarty->display('index.tpl');
?> 

Şablonlarınızda:

<html>
  <head>
    <title>{$hometitle}</title>
  </head>
  <body>
    <!--body content here-->
  </body>
</html>