根据自定义模板设置标题 时间:2016-11-09 作者:user135498 我正在构建一个网站,该网站使用自定义模板来显示从外部API提取的一组列表。我需要使用API中的数据设置标题和元描述值。我发现了大量使用函数的示例。php和seo挂钩,但我需要避免在函数运行时再次调用api。php被调用,并且希望在初始api调用期间设置标题和元描述。 1 个回复 SO网友:user135498 使用全局变量将值从模板传递到标头。// in the template file global $my_page_title; $my_page_title = \'field value\'; global $my_meta_description; $my_meta_description = \'field value\'; get_header(); // in the header file global $my_page_title; global $my_meta_description; echo $my_page_title; echo $my_meta_description; 文章导航