我想做一些非常简单的事情,但我一直在寻找我需要在WordPress中执行此操作的地方。
当我的WordPress网站上有人访问博客文章页面时,我希望博客文章中的标题替换为页面标题。
我想我可以用wp\\u title filter hook做到这一点?
我想了一下:-
add_filter(\'wp_title\', \'filter_pagetitle\');
function filter_pagetitle($title) {
$the_post_id = get_the_ID();
$the_post_data = get_post($the_post_id);
$title = $the_post_data->post_title;
return $title;
}
然而,我有点不知道我把这个放在哪里,我想它需要在循环单。php,因为我希望它只应用于单个页面,但我也看到这需要在函数中实现。php在我的主题中?
任何帮助都将不胜感激:-)
富有的