Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在 hook_views_query_alter() 中做一些工作,从那里我可以通过引用访问 $views 和 $query 对象。
我正在更改查询,但我想保留一些逻辑来修改此显示的标题(它是一个块)。
我的显示对象是这样的:$view->display[$view->current_display]
$view->display[$view->current_display]
我似乎无法弄清楚如何从中更改显示标题。
您应该能够从 build_info 更改它。
$view->build_info['title'] = "New title";