I should make global suffix title for my website pages. For example:
<title> Watches - "global suffix" </title>
I should make global suffix title for my website pages. For example:
<title> Watches - "global suffix" </title>
收起
header.php
<?php
....
$title = 'Title';
....
index.php
<?php include('header.php'); ?>
....
<title> Watches - <?php echo $title; ?> </title>
报告相同问题?