我试图更改我的wordpress网站页面的the_title(),但它会更改所有文本,我只需要将“订购”更改为“QUOTE”并保留订单号“#3344”。任何人都可以用我的if语句帮助我。
<?php
// Changeing Order title to quote
$page_id = get_the_ID();
if($page_id == '49')
{
$original_title = get_the_title();
$new_title = str_replace("ORDER","QUOTE","ORDER");
echo $new_title;
}
else {
the_title();
}
?>
答案 0 :(得分:0)
请仔细查看docs。但是 - 您必须使用wp_title()
函数:
示例代码:
wp_title( string $sep = '»', bool $display = true, string $seplocation = '' )
<强>参数:强>
$sep (string) (Optional) default is '»'. How to separate the various items within the page title.
$display (bool) (Optional) Whether to display or retrieve title.
(string) (Optional) Direction to display title, 'right'.
我非常确定wp_title
能够正确地完成工作:)
您可以在此处找到更多信息:!! hit me !!