我试图在我的函数中执行以下代码。php更改我的wordpress博客的标题。
function filter_pagetitle($url) {
global $wp_query;
$the_post_id = $wp_query->post->ID;
$the_post_data = get_post($the_post_id);
return $the_post_data->post_title;
}
add_filter(\'wp_title\', \'filter_pagetitle\');
但是,$the\\u post\\u id始终返回为同一个id,并且从不更改我正在查看的帖子的id?
我做错了什么?