【发布时间】:2021-12-19 12:13:33
【问题描述】:
尝试优化网站,想知道这是否有一些影响。
我正在向$context 添加一些变量...
public function add_to_context( $context ) {
$context['query'] = $GLOBALS['wp_query']->query_vars;
$context['menu'] = new Timber\Menu('main-menu', array( 'depth' => 2 ));
...
$context['footer_menu'] = new \Timber\Menu( 'footer-main-menu' );
$context['footer_support'] = new \Timber\Menu( 'footer-support-menu' );
$context['footer_legal'] = new \Timber\Menu( 'footer-legal-menu' );```
【问题讨论】:
-
Timber 带有一个timer helper,您可以使用它来查看它对性能的影响有多大。
标签: performance optimization timber