单个页面的元标记
我目前有一个基于 PHP 模板的网站,因此所有页面都通过 PHP 的 include 使用相同的 header.php 文件。
我只是让自己进入元数据等,并且想知道如果每个页面都使用相同的标题,我如何为每个单独的页面获取特定的元数据?
I currently have a website based off a PHP template so all pages use the same header.php file via PHP's include.
I am just getting myself into meta data, etc. and wanted to know how I go about having specific meta data for each individual page if each page is using the same header?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这高度依赖于您使用的模板系统。
fi Zend Framework Zend_View 使您能够使用视图助手来完成此类任务。
如果依赖于简单得多的包含“header.php”的东西,那么您可以在包含头文件之前指定一个变量并将其设置为所需的值,同时在包含的文件中回显该变量。
像这样的东西:
index.php
header.php
This is highly dependent on templating system you use.
f.i. Zend Framework Zend_View enables you with view helpers for such tasks.
If relying on something far less advanced as simple include "header.php", then you can specify a variable before including header file and set it with desired value, while in included file echo that variable.
Something like this:
index.php
header.php