-
-
Notifications
You must be signed in to change notification settings - Fork 512
Closed
Labels
Description
I call wp_nav_menu() inside a function in functions.php file.
Then I call this function on a twig file, but nothing was displayed.
I use WordPress 4.5.2, Timber 1.0.4 installed through wpackagist.
function theme_menu()
{
wp_nav_menu(array(
'menu' => 'primary',
'theme_location' => 'primary',
'depth' => 2,
'container' => false,
'menu_class' => 'menu__list',
'fallback_cb' => 'wp_bootstrap_navwalker::fallback',
'walker' => new wp_bootstrap_navwalker()
));
}{{ function('theme_menu') }}Reactions are currently unavailable