我不知道有什么Genisis特有的方法可以做到这一点,但您可以通过wp_title
滤器
function foo_template_title( $title ) {
return \'Foo Template\';
}
add_filter( \'wp_title\', \'foo_template_title\' );
下一步是检查当前页面是否使用Foo模板页面模板。记住更换
foo_template.php
使用页面模板的文件名:
function foo_template_title( $title ) {
if ( is_page_template( \'foo_template.php\' )
return \'Foo Template\';
else
return $title;
}
add_filter( \'wp_title\', \'foo_template_title\' );
有关
is_page_template()
功能和
wp_title
滤器