只是想知道如何过滤以从短代码更改当前页面标题,
因为shortocodes是在$post之后呈现的。
有什么想法可以归档如下内容:do_shortcode([\'mytitle="newtitle"\']);
最合适的回答,由SO网友:Oleg Butuzov 整理而成
为什么不使用the_title 滤器
add_filter(\'the_title\', \'the_title_filter\');
function the_title_filter($title){
$post = get_post(get_the_id());
//enter code here
return $title;
}
至于短代码,这是不可能的。在逻辑上——不可能。