PDA

View Full Version : Replace Word in Title


basketmen
07-04-2015, 11:43 AM
There are many code/plugin to Replace Word in Post, like these

$word = array(
'word 1',
'word 2',
);
$link = array(
'xxxx',
'yyyy',
);
$this->post['message'] = str_replace($word, $link, $this->post['message']);

https://vborg.vbsupport.ru/showthread.php?t=235725
https://vborg.vbsupport.ru/showthread.php?t=235769
https://vborg.vbsupport.ru/showthread.php?t=219968



but there is no one to Replace the Word in Title, some people have asked too before (https://vborg.vbsupport.ru/showpost.php?p=2028084&postcount=7), but not answered yet

anyone can share how to do that? maybe make above code to replace in title too

kh99
07-04-2015, 11:54 AM
I think you should just be able to use $this->post['title'], like:
$this->post['title'] = str_replace($word, $link, $this->post['title']);