gpt4 book ai didi

php - Wordpress 在自定义页面上设置自定义标题

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:46:32 25 4
gpt4 key购买 nike

我正在尝试创建完全自定义的页面,但使用相同的功能在 WP 中创建页眉和页脚。我的页面上有这个

<?php
include("../wp-blog-header.php");
get_header();
?>
<title>My Custom Title Here</title>
<?php
wp_head();
get_footer();
?>

页面显示一切正常,但是当我尝试添加 <title>My Custom Title Here</title> 时在 get_header() 之后我在我的页面源代码中得到这个作为标题 Page not found &#8211; My Custom Title

如何设置自定义页面标题?我的意思是页面加载后标题应该是 <title>My Custom Title Here</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(); ?>

关于php - Wordpress 在自定义页面上设置自定义标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42009768/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com