我正在尝试创建完全自定义页面,但使用相同的功能在WP中创建页眉和页脚.
我在我的页面上有这个
<?php
include("../wp-blog-header.php");
get_header();
?>
<title>My Custom Title Here</title>
<?php
wp_head();
get_footer();
?>
页面显示一切正常,但是当我尝试添加< title>我的自定义标题在这里< / title>在get_header()之后我在我的页面源代码中找到了这个标题页面未找到–我的自定义标题
如何设置自定义页面标题?我的意思是在页面加载后,标题应该是< title>我的自定义标题在这里< / title>
最佳答案 也许并不理想,但我已经完成了以下工作.使用一些额外的逻辑,你可以将它添加到你的functions.php,但是如果你真的只需要一个页面,我只需要在调用get_header()之前在该特定文件中包含过滤器.
<?php
include("../wp-blog-header.php");
add_filter( 'wp_title', 'custom_title', 1000 );
function custom_title($title) {
$title = 'My Custom Title Here';
return $title;
}
get_header();
?>
<?php wp_head(); get_footer(); ?>