我想为每个页面分配一个标题,但我的所有页面都链接到我的index.php
:
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>Test</title>
<link href="css/style.css" rel="stylesheet" type="text/css">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">
</head>
<body>
<?php include("top_bar.php");?>
<?php include("header.php");?>
<?php include("container.php");?>
<?php include("footer.php");?>
</body>
</html>
以下是我的网站:http://prntscr.com/47nn7h
我的所有网页都有我为index.php
添加的标题,但是如何为特定网页添加标题(例如,当我转到页面members.php
时)?
members.php:
<?php include "index.php";?>
感谢。
答案 0 :(得分:2)
用此替换现有的<title>
标记。
<title><?php echo $pagetitle; ?> </title>
在<head>
块中。
在发出标记之前,请确保$pagetitle
实际包含所需的标题。从您的问题中不清楚这些标题的来源 - 您可能需要在页面顶部使用一些PHP来设置所有这些。
答案 1 :(得分:0)