-
Notifications
You must be signed in to change notification settings - Fork 23
Avoid duplicate query for mobile menu #40
Copy link
Copy link
Open
Labels
Milestone
Description
Here is my fix:
class Aucor_Menu_Primary extends Aucor_Component {
public static $cache;
public static function frontend($data) {
?>
<nav <?php parent::render_attributes($data['attr']); ?>>
<?php
if (!self::$cache) self::$cache = wp_nav_menu([
'theme_location' => 'primary',
'container' => '',
'menu_class' => 'primary-navigation__items',
'link_before' => '',
'link_after' => '',
'fallback_cb' => '',
'echo' => false,
]);
echo self::$cache;
?>
...Reactions are currently unavailable